添加 终端周期检测 页面

This commit is contained in:
GGJ
2024-06-13 18:41:01 +08:00
parent 2c66e096e7
commit f15f529842
6 changed files with 540 additions and 1 deletions

View File

@@ -10,6 +10,9 @@
<el-tab-pane label="监测点联调列表" name="3">
<jointDebugList v-if="activeName == '3'" />
</el-tab-pane>
<el-tab-pane label="终端周期检测" name="4">
<cycleDetection v-if="activeName == '4'"/>
</el-tab-pane>
</el-tabs>
</div>
</template>
@@ -20,6 +23,7 @@ import { mainHeight } from '@/utils/layout'
import terminal from './components/terminainal/index.vue'
import monitorpoint from './components/monitorpoint/index.vue'
import jointDebugList from './components/jointDebugList/index.vue'
import cycleDetection from './components/cycleDetection/index.vue'
defineOptions({
name: 'terminalNetwotk'
})