|
@@ -31,7 +31,7 @@
|
|
|
</div>
|
|
|
<div class="sub">
|
|
|
<ul>
|
|
|
- <li v-for="item,index in subList" :class="{'highlight': item.status}">
|
|
|
+ <li v-for="item,index in subList.data" :class="{'highlight': item.status}">
|
|
|
<span @click="handleToggleLayer(index)">{{ item.name }}</span>
|
|
|
</li>
|
|
|
</ul>
|
|
@@ -60,12 +60,16 @@ export default {
|
|
|
import WaterLevel from './cpns/WaterLevel.vue'
|
|
|
import MiForChange from './cpns/MiForChange.vue'
|
|
|
import { asideShow } from '@/store/index'
|
|
|
+import { GetUserPrivilege } from "@/utils/user";
|
|
|
+
|
|
|
|
|
|
const global_aside = asideShow()
|
|
|
const showVido =ref('false')
|
|
|
|
|
|
onMounted(() => [
|
|
|
- getWeather()
|
|
|
+ getWeather(),
|
|
|
+ GetUserPrivilege(subList),
|
|
|
+
|
|
|
])
|
|
|
|
|
|
const weather = ref('qing')
|
|
@@ -84,19 +88,21 @@ export default {
|
|
|
})
|
|
|
}
|
|
|
|
|
|
- const subList = reactive([
|
|
|
- { name: '航道', status: false },
|
|
|
- { name: '潮高', status: false },
|
|
|
- { name: '船舶', status: true },
|
|
|
- { name: '视频', status: false },
|
|
|
- { name: '水下地形', status: false },
|
|
|
- { name: '断面', status: false },
|
|
|
- { name: '中燃船舶', status: false },
|
|
|
- ])
|
|
|
+ const subList = reactive({
|
|
|
+ data:[
|
|
|
+ { name: '航道', status: false },
|
|
|
+ { name: '潮高', status: false },
|
|
|
+ { name: '船舶', status: true },
|
|
|
+ { name: '视频', status: false },
|
|
|
+ { name: '水下地形', status: false },
|
|
|
+ { name: '断面', status: false },
|
|
|
+ { name: '中燃船舶', status: false },
|
|
|
+ ]
|
|
|
+ })
|
|
|
|
|
|
function handleToggleLayer(index) {
|
|
|
- subList[index].status = !subList[index].status
|
|
|
- if(subList[index].status===true) {
|
|
|
+ subList.data[index].status = !subList.data[index].status
|
|
|
+ if(subList.data[index].status===true) {
|
|
|
switch(index) {
|
|
|
case 0:
|
|
|
ueCallFlyToHD()
|
|
@@ -130,10 +136,10 @@ export default {
|
|
|
case 5:
|
|
|
if (clickWeeather.value) {
|
|
|
miForChangeShow.value = true
|
|
|
- subList[index].status = true
|
|
|
+ subList.data[index].status = true
|
|
|
ueCallShowAllMi()
|
|
|
}else {
|
|
|
- subList[index].status = false
|
|
|
+ subList.data[index].status = false
|
|
|
}
|
|
|
break
|
|
|
case 6:
|
|
@@ -158,7 +164,7 @@ export default {
|
|
|
case 4:
|
|
|
clickWeeather.value=false
|
|
|
miForChangeShow.value = false
|
|
|
- subList[index+1].status = false
|
|
|
+ subList.data[index+1].status = false
|
|
|
ueCallCloseMi()
|
|
|
bus.emit('toggle_sxdx', false)
|
|
|
break
|