<!--
|
* @Author: shuishen 1109946754@qq.com
|
* @Date: 2023-03-10 15:27:59
|
* @LastEditors: shuishen 1109946754@qq.com
|
* @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">
|
</div>
|
</template>
|
|
<style lang="scss" scoped>
|
.container {
|
position: absolute;
|
width: 100%;
|
height: 100%;
|
}
|
</style>
|