1
0
mirror of https://github.com/FatttSnake/Pinnacle-OA.git synced 2026-04-05 23:11:24 +08:00

add noticeTypeManage module

This commit is contained in:
cccccyb
2023-05-16 03:13:19 +08:00
parent a2508b887e
commit c860e9c3e8
23 changed files with 460 additions and 91 deletions

View File

@@ -172,10 +172,42 @@ const router = createRouter({
path: 'noticeView',
component: async () => await import('@/pages/notice/NoticeView.vue'),
name: 'noticeView',
redirect: '/notice/noticeView/all',
meta: {
title: '公告查看',
requiresScrollbar: false,
requiresPadding: true
},
children: [
{
path: 'all',
component: async () =>
await import('@/pages/notice/AllReceiveNoticeView.vue'),
name: 'all'
},
{
path: 'alRead',
component: async () =>
await import('@/pages/notice/AlReadView.vue'),
name: 'alRead'
},
{
path: 'toRead',
component: async () =>
await import('@/pages/notice/ToReadView.vue'),
name: 'toRead'
}
]
},
{
path: 'noticeTypeManage',
component: async () =>
await import('@/pages/notice/NoticeTypeManage.vue'),
name: 'noticeTypeManage',
meta: {
title: '公告类型管理',
requiresScrollbar: false,
requiresPadding: true
}
}
]