技术监督计划页面

This commit is contained in:
zhujiyan
2024-05-20 18:48:48 +08:00
parent 9f2f0b5030
commit 19be5c730b
4 changed files with 1436 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<!-- 技术监督计划 -->
<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>