38 lines
978 B
Vue
38 lines
978 B
Vue
<template>
|
|
<div class='default-main'>
|
|
<el-tabs v-model='activeName' type='border-card'>
|
|
<el-tab-pane label='普测计划管理' name='1'>
|
|
<plan-manage v-if="activeName == '1'" />
|
|
</el-tab-pane>
|
|
<el-tab-pane label='普测测试管理' name='2'>
|
|
<test-manage v-if="activeName == '2'" />
|
|
</el-tab-pane>
|
|
</el-tabs>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang='ts'>
|
|
import { onMounted, reactive, ref, provide } from 'vue'
|
|
import planManage from './components/planManage.vue'
|
|
import testManage from './components/testManage.vue'
|
|
import { mainHeight } from '@/utils/layout'
|
|
defineOptions({
|
|
name: 'supervision/harmonicmanagement'
|
|
})
|
|
const activeName = ref('1')
|
|
|
|
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>
|