| | |
| | | * @Author: shuishen 1109946754@qq.com |
| | | * @Date: 2023-03-10 15:27:59 |
| | | * @LastEditors: shuishen 1109946754@qq.com |
| | | * @LastEditTime: 2024-11-08 15:29:21 |
| | | * @LastEditTime: 2024-11-11 18:26:24 |
| | | * @FilePath: \bigScreen\src\views\rs\index.vue |
| | | * @Description: 综合设计 |
| | | * |
| | | * Copyright (c) 2023 by ${git_name_email}, All Rights Reserved. |
| | | --> |
| | | <script setup> |
| | | import { onMounted, onUnmounted } from 'vue' |
| | | import leftContainer from './components/leftContainer.vue' |
| | | import rightContainer from './components/rightContainer.vue' |
| | | import EventBus from 'utils/bus' |
| | | |
| | | onMounted(() => { |
| | | EventBus.emit('restHandleCheckChange', '4'); |
| | | }) |
| | | |
| | | onUnmounted(() => { |
| | | EventBus.emit('restHandleDelChange', '4'); |
| | | }) |
| | | </script> |
| | | |
| | | <template> |
| | | <div class="container page-container"> |
| | | <!-- <left-container></left-container> --> |
| | | |
| | | <!-- <right-container></right-container> --> |
| | | </div> |
| | | </template> |
| | | |