智慧园区前端大屏
shuishen
2024-11-20 7927bb70899ace0b16ab7c073c73c644aecdcea5
突发事件模拟模拟加载污水管网
1 files modified
12 ■■■■■ changed files
src/views/pd/index.vue 12 ●●●●● patch | view | raw | blame | history
src/views/pd/index.vue
@@ -2,21 +2,31 @@
 * @Author: shuishen 1109946754@qq.com
 * @Date: 2023-03-10 15:27:59
 * @LastEditors: shuishen 1109946754@qq.com
 * @LastEditTime: 2024-11-12 20:02:05
 * @LastEditTime: 2024-11-20 17:21:09
 * @FilePath: \bigScreen\src\views\pd\index.vue
 * @Description: 综合设计
 * 
 * Copyright (c) 2023 by ${git_name_email}, All Rights Reserved. 
-->
<script setup>
import EventBus from 'utils/bus'
import dynamicPanel from './components/dynamicPanel.vue'
import { CaretLeft, CaretRight } from '@element-plus/icons-vue'
import { nextTick, onUnmounted } from 'vue'
const showPanel = ref(true)
const showPanelChange = () => {
  showPanel.value = !showPanel.value
}
nextTick(() => {
  EventBus.emit('restHandleCheckChange', `3-3-2`)
})
onUnmounted(() => {
  EventBus.emit('restHandleDelChange', `3-3-2`)
})
</script>
<template>