Browse Source

增加 页面 路由 指挥调度

wangqin
Joe 11 months ago
parent
commit
86cf33fc04
  1. 22
      ruoyi-ui/src/common/menuData.js
  2. 2
      ruoyi-ui/src/views/JiHeExpressway/pages/control/event/businessDataManagement/index.vue
  3. 2
      ruoyi-ui/src/views/JiHeExpressway/pages/control/event/businessDataManagement/views/dutyOfficer/index.vue
  4. 15
      ruoyi-ui/src/views/JiHeExpressway/pages/control/event/commandDispatch/index.vue

22
ruoyi-ui/src/common/menuData.js

@ -76,6 +76,12 @@ export default [
name: "emergencyProcessManagement",
component: "control/event/emergencyProcessManagement/index.vue",
},
{
title: "指挥调度",
path: "/control/event/commandDispatch",
name: "commandDispatch",
component: "control/event/commandDispatch/index.vue",
},
],
},
],
@ -92,13 +98,15 @@ export default [
name: "service",
position: "right",
path: "/service",
redirect:"serviceBoard",
children:[{
title:"情报板",
name:"serviceBoard",
path:"/service/board",
component:"service/board/index.vue",
}]
redirect: "serviceBoard",
children: [
{
title: "情报板",
name: "serviceBoard",
path: "/service/board",
component: "service/board/index.vue",
},
],
},
{
title: "数据可视化",

2
ruoyi-ui/src/views/JiHeExpressway/pages/control/event/businessDataManagement/index.vue

@ -98,7 +98,7 @@ export default {
},
data() {
return {
activeName: "DutyOfficer",
activeName: "FirstResponders",
panels: [
{
label: "应急人员",

2
ruoyi-ui/src/views/JiHeExpressway/pages/control/event/businessDataManagement/views/dutyOfficer/index.vue

@ -177,7 +177,7 @@ export default {
})),
operateRecordVisible: false,
modifyDutyInformationTableVisible: true
modifyDutyInformationTableVisible: false
}
},
methods: {

15
ruoyi-ui/src/views/JiHeExpressway/pages/control/event/commandDispatch/index.vue

@ -0,0 +1,15 @@
<template>
<div class='CommandDispatch'>
CommandDispatch
</div>
</template>
<script>
export default {
name: 'CommandDispatch',
}
</script>
<style lang='scss' scoped>
.CommandDispatch {}
</style>
Loading…
Cancel
Save