|
@@ -102,61 +102,38 @@ export const constantRoutes: RouteRecordRaw[] = [
|
|
|
],
|
|
|
},
|
|
|
// TODO 临时路由建立,仅供静态页面搭建使用
|
|
|
+ // 通报信息管理
|
|
|
{
|
|
|
- path: '/illegalInformation',
|
|
|
+ path: '/notificationInfoManage',
|
|
|
component: Layout,
|
|
|
children: [
|
|
|
{
|
|
|
- path: 'address',
|
|
|
- component: () => import('@/views/addressBook/index.vue'),
|
|
|
- name: 'address',
|
|
|
- meta: { title: '违法信息通报通讯录', icon: 'user' },
|
|
|
+ path: 'addressBook',
|
|
|
+ component: () => import('@/views/notificationInfoManage/addressBook/index.vue'),
|
|
|
+ name: 'addressBook',
|
|
|
+ meta: { title: '通报联络员管理', icon: 'user' },
|
|
|
},
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/matters',
|
|
|
- component: Layout,
|
|
|
- children: [
|
|
|
{
|
|
|
- path: 'notification',
|
|
|
- component: () => import('@/views/notificationListManage/index.vue'),
|
|
|
- name: 'notification',
|
|
|
- meta: { title: '违法信息通报事项清单管理', icon: 'user' },
|
|
|
+ path: 'notificationList',
|
|
|
+ component: () => import('@/views/notificationInfoManage/notificationListManage/index.vue'),
|
|
|
+ name: 'notificationList',
|
|
|
+ meta: { title: '通报事项清单管理', icon: 'user' },
|
|
|
},
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/myPublish',
|
|
|
- component: Layout,
|
|
|
- children: [
|
|
|
{
|
|
|
- path: 'publish',
|
|
|
- component: () => import('@/views/myPublish/index.vue'),
|
|
|
- name: 'publish',
|
|
|
+ path: 'myPublish',
|
|
|
+ component: () => import('@/views/notificationInfoManage/myPublish/index.vue'),
|
|
|
+ name: 'myPublish',
|
|
|
meta: { title: '我要发布', icon: 'user' },
|
|
|
},
|
|
|
-
|
|
|
{
|
|
|
path: 'addPublish',
|
|
|
- component: () => import('@/views/myPublish/components/detail.vue'),
|
|
|
+ component: () => import('@/views/notificationInfoManage/myPublish/components/detail.vue'),
|
|
|
name: 'addPublish',
|
|
|
meta: { title: '新增发布', icon: 'user' },
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
- {
|
|
|
- path: '/notificationListManage',
|
|
|
- component: Layout,
|
|
|
- children: [
|
|
|
- {
|
|
|
- path: 'notificationList',
|
|
|
- component: () => import('@/views/InformationDisposalManage/index.vue'),
|
|
|
- name: 'notificationList',
|
|
|
- meta: { title: '我的接收处置', icon: 'user' },
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
+ // 超时提醒
|
|
|
{
|
|
|
path: '/globalparam',
|
|
|
component: Layout,
|
|
@@ -169,22 +146,35 @@ export const constantRoutes: RouteRecordRaw[] = [
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
+ // 通报信息查询
|
|
|
{
|
|
|
- path: '/securityInformationInquiry',
|
|
|
+ path: '/notificationInfoInquiry',
|
|
|
component: Layout,
|
|
|
children: [
|
|
|
{
|
|
|
path: 'inquiry',
|
|
|
- component: () => import('@/views/securityInformationInquiry/index.vue'),
|
|
|
+ component: () => import('@/views/notificationInfoInquiry/securityInformationInquiry/index.vue'),
|
|
|
name: 'inquiry',
|
|
|
meta: { title: '安全检查通报信息查询', icon: 'user' },
|
|
|
},
|
|
|
{
|
|
|
path: 'inquiryDetails',
|
|
|
- component: () => import('@/views/securityInformationInquiry/components/detail.vue'),
|
|
|
+ component: () => import('@/views/notificationInfoInquiry/securityInformationInquiry/components/detail.vue'),
|
|
|
name: 'inquiryDetails',
|
|
|
meta: { title: '查看通报信息', icon: 'user' },
|
|
|
},
|
|
|
+ {
|
|
|
+ path: 'shipRegistration',
|
|
|
+ component: () => import('@/views/notificationInfoInquiry/shipRegistration/index.vue'),
|
|
|
+ name: 'shipRegistration',
|
|
|
+ meta: { title: '船舶登记通报信息查询', icon: 'user' },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: 'shipRegistrationDetails',
|
|
|
+ component: () => import('@/views/notificationInfoInquiry/shipRegistration/components/detail.vue'),
|
|
|
+ name: 'shipRegistrationDetails',
|
|
|
+ meta: { title: '查看船舶登记通报信息', icon: 'user' },
|
|
|
+ },
|
|
|
],
|
|
|
},
|
|
|
];
|
|
@@ -276,4 +266,6 @@ const router = createRouter({
|
|
|
},
|
|
|
});
|
|
|
|
|
|
+console.log(router.getRoutes());
|
|
|
+
|
|
|
export default router;
|