This commit is contained in:
2025-03-14 19:03:13 +08:00
parent 9ffe64dd44
commit 86671de035
22 changed files with 923 additions and 83 deletions

View File

@@ -5,12 +5,18 @@ const mockRoutes = [
title: '任务中心',
icon: '',
component: 'task-center',
meta: {
name: '任务中心'
},
children: [
{
path: 'reward-mission',
name: 'reward-mission',
title: '悬赏任务',
icon: '',
meta: {
name: '悬赏任务'
},
component: 'reward-mission',
},
{
@@ -18,7 +24,20 @@ const mockRoutes = [
name: 'appointed-task',
title: '任务指派',
icon: '',
meta: {
name: '任务指派'
},
component: 'appointed-task',
},
{
path: 'new-task',
name: 'new-task',
title: '新建任务',
icon: '',
meta: {
name: '新建任务'
},
component: 'new-task',
}
]
},
@@ -27,6 +46,9 @@ const mockRoutes = [
name: 'communication-center',
title: '沟通中心',
icon: '',
meta: {
name: '沟通中心'
},
component: 'communication-center',
}
];