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

add personAffairs model and solve warning

This commit is contained in:
assina045
2023-05-23 15:16:00 +08:00
parent 98c1a187a4
commit 79ebf022b3
10 changed files with 367 additions and 106 deletions

View File

@@ -3,16 +3,6 @@ const affairRouter = {
name: 'affair',
redirect: 'manage',
children: [
{
path: 'manage',
name: 'affairManage',
component: async () => await import('@/pages/affair/Affair.vue'),
meta: {
title: '事务管理',
requiresScrollbar: true,
requiresPadding: true
}
},
{
path: 'add',
component: async () => await import('@/pages/affair/AffairAdd.vue'),
@@ -23,12 +13,32 @@ const affairRouter = {
requiresPadding: true
}
},
{
path: 'personalAffairs',
component: async () => await import('@/pages/affair/PersonalAffairsView.vue'),
name: 'PersonalAffairs',
meta: {
title: '我的事务',
requiresScrollbar: true,
requiresPadding: true
}
},
{
path: 'manage',
name: 'affairManage',
component: async () => await import('@/pages/affair/Affair.vue'),
meta: {
title: '事务审批',
requiresScrollbar: true,
requiresPadding: true
}
},
{
path: 'approved',
component: async () => await import('@/pages/affair/AffairApproved.vue'),
name: 'affairApproved',
meta: {
title: '审批事务',
title: '审批记录',
requiresScrollbar: true,
requiresPadding: true
}