32 lines
626 B
Vue
32 lines
626 B
Vue
<!-- 技术监督计划 -->
|
|
<template>
|
|
<div class="default-main">
|
|
<plan/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { onMounted, reactive, ref, provide } from 'vue'
|
|
import plan from './components/index.vue'
|
|
import { mainHeight } from '@/utils/layout'
|
|
defineOptions({
|
|
name: 'supervise/plan'
|
|
})
|
|
const activeName = ref('1')
|
|
const Statistics = ref()
|
|
const compatibility = ref()
|
|
|
|
const layout = mainHeight(63) as any
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.bars_w {
|
|
width: 100%;
|
|
height: 500px;
|
|
}
|
|
:deep(.el-tabs__content) {
|
|
height: v-bind('layout.height');
|
|
overflow-y: auto;
|
|
}
|
|
</style>
|