Browse Source

增加路由

wangqin
Joe 11 months ago
parent
commit
6bcfe13b4d
  1. 16
      ruoyi-ui/src/common/menuData.js
  2. 15
      ruoyi-ui/src/views/JiHeExpressway/pages/service/InformationReleaseManagement/index.vue
  3. 15
      ruoyi-ui/src/views/JiHeExpressway/pages/service/PublishingChannelManagement/index.vue

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

@ -36,7 +36,7 @@ export default [
path: "/perception/trafficSituation",
name: "perceptionTrafficSituation",
component: "perception/trafficSituation/index.vue",
}
},
],
},
{
@ -112,6 +112,18 @@ export default [
path: "/service/board",
component: "service/board/index.vue",
},
{
title: "发布渠道管理",
name: "PublishingChannelManagement",
path: "/service/PublishingChannelManagement",
component: "service/PublishingChannelManagement/index.vue",
},
{
title: "信息发布管理",
name: "InformationReleaseManagement",
path: "/service/InformationReleaseManagement",
component: "service/InformationReleaseManagement/index.vue",
},
],
},
{
@ -139,7 +151,7 @@ export default [
path: "/datav/gisAndBim",
component: "datav/gisAndBim/index.vue",
},
]
],
},
{
title: "配置中心",

15
ruoyi-ui/src/views/JiHeExpressway/pages/service/InformationReleaseManagement/index.vue

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

15
ruoyi-ui/src/views/JiHeExpressway/pages/service/PublishingChannelManagement/index.vue

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