2024-05-16 15:00:58 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="default-main">
|
|
|
|
|
<el-tabs v-model="activeName" type="border-card">
|
|
|
|
|
<el-tab-pane label="终端入网检测" name="1">
|
|
|
|
|
<terminal v-if="activeName == '1'" />
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
<el-tab-pane label="监测点台账录入" name="2">
|
|
|
|
|
<monitorpoint v-if="activeName == '2'" />
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
<el-tab-pane label="监测点联调列表" name="3">
|
2024-05-20 10:50:24 +08:00
|
|
|
<jointDebugList v-if="activeName == '3'" />
|
2024-05-16 15:00:58 +08:00
|
|
|
</el-tab-pane>
|
|
|
|
|
</el-tabs>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { onMounted, reactive, ref, provide } from 'vue'
|
|
|
|
|
import { mainHeight } from '@/utils/layout'
|
|
|
|
|
import terminal from './components/terminainal/index.vue'
|
|
|
|
|
import monitorpoint from './components/monitorpoint/index.vue'
|
2024-05-20 10:50:24 +08:00
|
|
|
import jointDebugList from './components/jointDebugList/index.vue'
|
2024-05-27 16:17:07 +08:00
|
|
|
defineOptions({
|
|
|
|
|
name: 'terminalNetwotk'
|
2024-05-16 15:00:58 +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;
|
|
|
|
|
}
|
|
|
|
|
:deep(.el-tabs__content) {
|
|
|
|
|
height: v-bind('layout.height');
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
}
|
|
|
|
|
</style>
|