过程监督 迁移中

This commit is contained in:
GGJ
2024-03-06 16:14:09 +08:00
parent faec144f58
commit e4745f891f
10 changed files with 144 additions and 2 deletions

View File

@@ -0,0 +1,42 @@
<template>
<div class="default-main">
<el-tabs v-model="activeName" type="border-card">
<el-tab-pane label="普测计划管理" name="1">
<planManage />
</el-tab-pane>
<el-tab-pane label="普测计划审批" name="2">
<planAudits />
</el-tab-pane>
<el-tab-pane label="普测结果管理" name="3"><outcome /></el-tab-pane>
<el-tab-pane label="普测计划占比配置" name="4"><occupancy /></el-tab-pane>
</el-tabs>
</div>
</template>
<script setup lang="ts">
import { onMounted, reactive, ref, provide } from 'vue'
import occupancy from './components/occupancy.vue'
import outcome from './components/outcome.vue'
import planAudits from './components/planAudits.vue'
import planManage from './components/planManage.vue'
import { mainHeight } from '@/utils/layout'
defineOptions({
name: 'Region/overview'
})
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;
}
::v-deep(.el-tabs__content) {
height: v-bind('layout.height');
overflow-y: auto;
}
</style>