This commit is contained in:
sjl
2026-01-06 08:35:36 +08:00
parent fd09e24cf0
commit cb19fef4c6
88 changed files with 117 additions and 135 deletions

View File

@@ -202,7 +202,7 @@ const change = () => {
if (!targetList.value.some(item => item.key == targetKey.value) ) {
targetKey.value = ''
}
console.log('🚀 ~ change ~ targetList.value:', targetList.value)
// console.log('🚀 ~ change ~ targetList.value:', targetList.value)
}
// 核心去重逻辑
function deduplicateByKey(data) {

View File

@@ -17,7 +17,7 @@ import load from './components/load/index.vue'
const activeName = ref('1')
const handleClick = (tab: TabsPaneContext, event: Event) => {
console.log(tab, event)
// console.log(tab, event)
}
</script>

View File

@@ -528,7 +528,7 @@ const DeviceQ = () => {
// 定位
const flyTo = (e: any, zoom?: number) => {
console.log('🚀 ~ flyTo ~ e:', e)
// console.log('🚀 ~ flyTo ~ e:', e)
let regex = new RegExp(e.psrName, 'i')
center.value.lng = e.coordinate[0]
center.value.lat = e.coordinate[1]
@@ -548,14 +548,14 @@ const grids = (row: any) => {
// 综合评估
getRunEvaluate({ ...row, deptIndex: props.params.deptIndex }).then((res: any) => {
console.log('🚀 ~ getRunEvaluate ~ res:', res)
// console.log('🚀 ~ getRunEvaluate ~ res:', res)
AreaData.value = res.data
GridDiagramArea()
})
// if (powerManageGridMap.value) powerLoad()
}
const radiusPop = (k: any) => {
console.log('🚀 ~ radiusPop ~ k:', k)
// console.log('🚀 ~ radiusPop ~ k:', k)
if (k != undefined) PopKey.value = k
}
const GridDiagramArea = () => {