2024-03-06 16:14:09 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="default-main">
|
|
|
|
|
<el-tabs v-model="activeName" type="border-card">
|
|
|
|
|
<el-tab-pane label="普测计划管理" name="1">
|
2024-03-12 16:15:45 +08:00
|
|
|
<planManage v-if="activeName == '1'" />
|
2024-03-06 16:14:09 +08:00
|
|
|
</el-tab-pane>
|
2024-05-14 18:17:53 +08:00
|
|
|
<!-- <el-tab-pane label="普测计划审批" name="2">
|
2024-03-12 16:15:45 +08:00
|
|
|
<planAudits v-if="activeName == '2'"/>
|
2024-05-14 18:17:53 +08:00
|
|
|
</el-tab-pane> -->
|
2024-04-10 20:33:20 +08:00
|
|
|
<!-- <el-tab-pane label="普测结果管理" name="3"><outcome v-if="activeName == '3'"/></el-tab-pane>
|
|
|
|
|
<el-tab-pane label="普测计划占比配置" name="4"><occupancy v-if="activeName == '4'"/></el-tab-pane> -->
|
2024-03-06 16:14:09 +08:00
|
|
|
</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({
|
2024-05-14 18:17:53 +08:00
|
|
|
name: 'supervision/harmonicmanagement'
|
2024-03-06 16:14:09 +08:00
|
|
|
})
|
|
|
|
|
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;
|
|
|
|
|
}
|
2024-03-18 19:43:55 +08:00
|
|
|
:deep(.el-tabs__content) {
|
2024-03-06 16:14:09 +08:00
|
|
|
height: v-bind('layout.height');
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
}
|
|
|
|
|
</style>
|