新建隧道大屏

This commit is contained in:
jxj_yjl 2023-09-20 09:26:38 +08:00
parent 9d28f6252c
commit 4531212930
3 changed files with 24 additions and 2 deletions

View File

@ -122,7 +122,12 @@ export const staticRouter: RouteRecordRaw[] = [
path: "/foundationPitMonitor", path: "/foundationPitMonitor",
name: "基坑监测", name: "基坑监测",
component: () => import("@/views/sevenLargeScreen/safetyManagement/foundationPitMonitor/index.vue") component: () => import("@/views/sevenLargeScreen/safetyManagement/foundationPitMonitor/index.vue")
} },
{
path: "/tunnelPosition",
name: "隧道定位监测",
component: () => import("@/views/sevenLargeScreen/safetyManagement/tunnelPosition/index.vue")
},
], ],
meta: { meta: {
title: "七参数大屏" title: "七参数大屏"

View File

@ -151,7 +151,11 @@ let menuList = ref([
{ {
menuName: "有毒气体监测", menuName: "有毒气体监测",
companyPath: "/toxicGasMonitor" companyPath: "/toxicGasMonitor"
} },
{
companyPath: "/tunnelPosition",
menuName: "隧道定位监测",
},
] ]
}, },
{ {

View File

@ -0,0 +1,13 @@
<template>
<div>
隧道定位监测
</div>
</template>
<script setup lang="ts">
</script>
<style scoped>
</style>