| | |
| | | * @Author: shuishen 1109946754@qq.com |
| | | * @Date: 2023-03-10 15:27:59 |
| | | * @LastEditors: shuishen 1109946754@qq.com |
| | | * @LastEditTime: 2024-11-25 20:33:22 |
| | | * @LastEditTime: 2025-02-12 19:37:16 |
| | | * @FilePath: \bigScreen\src\views\pd\index.vue |
| | | * @Description: 综合设计 |
| | | * |
| | |
| | | import dynamicPanel from './components/dynamicPanel.vue' |
| | | import { CaretLeft, CaretRight } from '@element-plus/icons-vue' |
| | | import { nextTick, onUnmounted } from 'vue' |
| | | import rightContainer from './components/rightContainer.vue' |
| | | |
| | | import { useMap } from 'store/map' |
| | | const mapStore = useMap() |
| | | |
| | | const showPanel = ref(true) |
| | | |
| | |
| | | } |
| | | |
| | | nextTick(() => { |
| | | EventBus.emit('restHandleCheckChange', `3-3-4`) |
| | | EventBus.emit('restHandleCheckChange', `3-9`) |
| | | }) |
| | | |
| | | onUnmounted(() => { |
| | | EventBus.emit('restHandleDelChange', `3-3-4`) |
| | | EventBus.emit('restHandleDelChange', `3-9`) |
| | | }) |
| | | </script> |
| | | |
| | |
| | | </div> |
| | | |
| | | <dynamic-panel v-show="showPanel" @closePanel="showPanelChange"></dynamic-panel> |
| | | |
| | | <right-container v-show="mapStore.showPreLevel"></right-container> |
| | | </div> |
| | | </template> |
| | | |