新增-扩建安全管理

This commit is contained in:
bb_pan 2025-12-03 17:55:38 +08:00
parent c689a77849
commit c628e32107
3 changed files with 29 additions and 0 deletions

View File

@ -36,6 +36,7 @@ watch(
{ name: '首页', routerName: 'home', permissions: 'home' },
// { name: '', routerName: 'big-screen', permissions: 'home' },
{ name: '数据地图', routerName: 'map', permissions: 'home' },
{ name: '扩建安全管理', routerName: 'infrastructureSafety', permissions: 'home' },
{ name: '装备共享大厅', routerName: 'equipList', permissions: 'share' },
{ name: '租赁需求大厅', routerName: 'parity', permissions: 'demand' },
// { name: '', routerName: 'zoneEquipment' },
@ -46,6 +47,7 @@ watch(
{ name: '首页', routerName: 'home', permissions: 'home' },
// { name: '', routerName: 'big-screen', permissions: 'home' },
{ name: '数据地图', routerName: 'map', permissions: 'home' },
{ name: '扩建安全管理', routerName: 'infrastructureSafety', permissions: 'home' },
{ name: '装备共享大厅', routerName: 'equipList', permissions: 'home' },
{ name: '租赁需求大厅', routerName: 'parity', permissions: 'home' },
// { name: '', routerName: 'zoneEquipment' },
@ -58,6 +60,7 @@ watch(
{ name: '首页', routerName: 'home', permissions: 'home' },
// { name: '', routerName: 'big-screen', permissions: 'home' },
{ name: '数据地图', routerName: 'map', permissions: 'home' },
{ name: '扩建安全管理', routerName: 'infrastructureSafety', permissions: 'home' },
{ name: '装备共享大厅', routerName: 'equipList', permissions: 'home' },
// { name: '', routerName: 'zoneEquipment' },
{ name: '租赁需求大厅', routerName: 'parity', permissions: 'home' },

View File

@ -104,6 +104,17 @@ const routes: Array<RouteRecordRaw> = [
activeName: 'map',
},
},
{
path: 'infrastructureSafety',
name: 'infrastructureSafety',
component: () => import('views/home/infrastructureSafety.vue'),
meta: {
title: '扩建安全管理',
keepAlive: true,
AuthFlag: false,
activeName: 'infrastructureSafety',
},
},
// 自选直租
{
path: '/equipList',

View File

@ -0,0 +1,15 @@
<template>
<NavMenu />
<div>
<iframe
src="http://112.27.246.86:31000/pointcloud/#/multipleManage/engineeringWorkTask?token=dXNlcjAwMUBzdGh5LmNvbQ=="
style="width: 100%; height: 800px; border: none"
></iframe>
</div>
</template>
<script setup name="infrastructureSafety">
import NavMenu from 'components/Navmenu/index.vue'
</script>
<style lang="scss" scoped></style>