新增消息列表

This commit is contained in:
2023-09-27 15:16:08 +08:00
parent b0fea79781
commit 5ada449282
10 changed files with 514 additions and 4 deletions

View File

@@ -292,6 +292,16 @@ export const asyncRoutes = [
title: '大机构',
icon: 'Tickets'
}
},
{
path: '/organization/big_organization/agent_detail',
name: 'agent_detail',
component: () => import('@/views/organization/agent_detail.vue'),
meta: {
title: '机构详情',
isHide: true,
activeMenu: '/organization/big_organization'
}
}
]
},
@@ -520,5 +530,27 @@ export const asyncRoutes = [
}
}
]
},
{
path: '/notice',
component: layout,
meta: {
title: '消息管理',
isHide: true,
roles: ['MG']
},
redirect: '/notice/index',
children: [
{
isHide: true,
path: '/notice/index',
name: 'noticeIndex',
component: () => import('@/views/notice/index.vue'),
meta: {
title: '消息列表',
isHide: true,
}
}
]
}
];