必到点采集模块并且展示地图方格 新增任务进度展示所有方格和任务处理

This commit is contained in:
maojiacai
2025-09-12 11:45:52 +08:00
parent 94bd692870
commit d48e876ec1
12 changed files with 1187 additions and 29 deletions

View File

@ -559,23 +559,41 @@ export const privateRoutes = [{
}
},
{
path: "/service/taskPage",
component: () => import("@/views/backOfficeSystem/service/taskPage/dailyTaskPackage/index"),
path: "/taskPage",
name: "taskPage",
redirect: "/taskPageIndex",
meta: {
title: '任务清单',
icon: "article-ranking"
},
children: [
{
path: "/taskPageIndex",
path: "/taskPage/taskPageIndex",
component: () => import("@/views/backOfficeSystem/service/taskPage/dailyTaskPackage/index"),
name: "taskPageIndex",
meta: {
title: '日常任务包',
icon: "article-ranking"
},
}
},
{
path: "/taskPage/taskProgress",
component: () => import("@/views/backOfficeSystem/service/taskPage/taskProgress/index"),
name: "taskProgress",
meta: {
title: '任务进度',
icon: "article-ranking"
},
},
{
path: "/taskPage/collectPage",
component: () => import("@/views/backOfficeSystem/service/taskPage/collectPage/index"),
name: "collectPage",
meta: {
title: '必到点采集',
icon: "article-ranking"
},
},
]
},
{