绘制技术监督页面 联调承载能力评估
This commit is contained in:
41
src/views/pqs/supervise/interfere/index.vue
Normal file
41
src/views/pqs/supervise/interfere/index.vue
Normal file
@@ -0,0 +1,41 @@
|
||||
<template>
|
||||
<div class="default-main">
|
||||
<el-tabs v-model="activeName" type="border-card">
|
||||
<el-tab-pane label="未建档非线性用户录入及查询" name="1">
|
||||
<undocumented />
|
||||
</el-tab-pane>
|
||||
<el-tab-pane label="入网评估报告审核" name="2"><network /></el-tab-pane>
|
||||
<el-tab-pane label="干扰源用户常态化管理" name="3"><normal /></el-tab-pane>
|
||||
<el-tab-pane label="实测报告审核" name="4"><report /></el-tab-pane>
|
||||
</el-tabs>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { onMounted, reactive, ref, provide } from 'vue'
|
||||
import undocumented from './components/undocumented.vue'
|
||||
import network from './components/network.vue'
|
||||
import normal from './components/normal.vue'
|
||||
import report from './components/report.vue'
|
||||
|
||||
import { mainHeight } from '@/utils/layout'
|
||||
defineOptions({
|
||||
name: 'Processsupervision/interferencemanagement'
|
||||
})
|
||||
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>
|
||||
Reference in New Issue
Block a user