|
@@ -58,7 +58,7 @@ export const constantRoutes = [
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
]
|
|
- },
|
|
|
|
|
|
+ }
|
|
|
|
|
|
// // 404 page must be placed at the end !!!
|
|
// // 404 page must be placed at the end !!!
|
|
// {
|
|
// {
|
|
@@ -123,7 +123,7 @@ export const asyncRoutes = [
|
|
path: 'PhotoVerify',
|
|
path: 'PhotoVerify',
|
|
name: '摄影师', // add by 梁展鹏 20210723 因为只有一个菜单,所以暂时把菜单名称写到这里。实际上这里是"照片管理"
|
|
name: '摄影师', // add by 梁展鹏 20210723 因为只有一个菜单,所以暂时把菜单名称写到这里。实际上这里是"照片管理"
|
|
component: () =>
|
|
component: () =>
|
|
- import('@/views/photographerManagement/photoVerify/index'),
|
|
|
|
|
|
+ import('@/views/photographerManagement/photoVerify/index'),
|
|
meta: {
|
|
meta: {
|
|
title: '摄影师',
|
|
title: '摄影师',
|
|
// icon: 'tree',
|
|
// icon: 'tree',
|
|
@@ -158,7 +158,7 @@ export const asyncRoutes = [
|
|
path: 'ImageGoodsManagement',
|
|
path: 'ImageGoodsManagement',
|
|
name: '照片商品管理',
|
|
name: '照片商品管理',
|
|
component: () =>
|
|
component: () =>
|
|
- import('@/views/photoManagement/imageGoodsManagement/index'),
|
|
|
|
|
|
+ import('@/views/photoManagement/imageGoodsManagement/index'),
|
|
meta: {
|
|
meta: {
|
|
title: '照片商品管理',
|
|
title: '照片商品管理',
|
|
// icon: 'table',
|
|
// icon: 'table',
|
|
@@ -169,7 +169,7 @@ export const asyncRoutes = [
|
|
path: 'PhotoVerifyManagement',
|
|
path: 'PhotoVerifyManagement',
|
|
name: '上传照片审核',
|
|
name: '上传照片审核',
|
|
component: () =>
|
|
component: () =>
|
|
- import('@/views/photoManagement/photoVerifyManagement/index'),
|
|
|
|
|
|
+ import('@/views/photoManagement/photoVerifyManagement/index'),
|
|
meta: {
|
|
meta: {
|
|
title: '上传照片审核',
|
|
title: '上传照片审核',
|
|
// icon: 'tree',
|
|
// icon: 'tree',
|
|
@@ -194,7 +194,7 @@ export const asyncRoutes = [
|
|
path: 'PhotographerVerify',
|
|
path: 'PhotographerVerify',
|
|
name: '摄影师认证审核',
|
|
name: '摄影师认证审核',
|
|
component: () =>
|
|
component: () =>
|
|
- import('@/views/photographerManagement/photographerVerify/index'),
|
|
|
|
|
|
+ import('@/views/photographerManagement/photographerVerify/index'),
|
|
meta: {
|
|
meta: {
|
|
title: '摄影师认证审核',
|
|
title: '摄影师认证审核',
|
|
// icon: 'table',
|
|
// icon: 'table',
|
|
@@ -273,7 +273,7 @@ export const asyncRoutes = [
|
|
path: 'OrderManagement',
|
|
path: 'OrderManagement',
|
|
name: '订单列表',
|
|
name: '订单列表',
|
|
component: () =>
|
|
component: () =>
|
|
- import('@/views/financialManagement/orderManagement/index'),
|
|
|
|
|
|
+ import('@/views/financialManagement/orderManagement/index'),
|
|
meta: {
|
|
meta: {
|
|
title: '订单列表',
|
|
title: '订单列表',
|
|
// icon: 'table',
|
|
// icon: 'table',
|
|
@@ -362,7 +362,7 @@ export const asyncRoutes = [
|
|
path: 'BannerManagement',
|
|
path: 'BannerManagement',
|
|
name: 'Banner管理',
|
|
name: 'Banner管理',
|
|
component: () =>
|
|
component: () =>
|
|
- import('@/views/baseManagement/bannerManagement/index'),
|
|
|
|
|
|
+ import('@/views/baseManagement/bannerManagement/index'),
|
|
meta: {
|
|
meta: {
|
|
title: 'Banner管理',
|
|
title: 'Banner管理',
|
|
// icon: 'table',
|
|
// icon: 'table',
|
|
@@ -383,12 +383,22 @@ export const asyncRoutes = [
|
|
path: 'ProblemFeedbackManagement',
|
|
path: 'ProblemFeedbackManagement',
|
|
name: '问题管理',
|
|
name: '问题管理',
|
|
component: () =>
|
|
component: () =>
|
|
- import('@/views/baseManagement/problemFeedbackManagement/index'),
|
|
|
|
|
|
+ import('@/views/baseManagement/problemFeedbackManagement/index'),
|
|
meta: {
|
|
meta: {
|
|
title: '问题管理',
|
|
title: '问题管理',
|
|
// icon: 'tree',
|
|
// icon: 'tree',
|
|
roles: ['admin', 'operate']
|
|
roles: ['admin', 'operate']
|
|
}
|
|
}
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ path: 'UpdateListManagement',
|
|
|
|
+ name: '自更新管理',
|
|
|
|
+ component: () => import('@/views/baseManagement/updateList/index'),
|
|
|
|
+ meta: {
|
|
|
|
+ title: '自更新管理',
|
|
|
|
+ // icon: 'tree',
|
|
|
|
+ roles: ['admin', 'operate']
|
|
|
|
+ }
|
|
}
|
|
}
|
|
]
|
|
]
|
|
},
|
|
},
|
|
@@ -408,7 +418,7 @@ export const asyncRoutes = [
|
|
path: 'AccountManagement',
|
|
path: 'AccountManagement',
|
|
name: '账号列表',
|
|
name: '账号列表',
|
|
component: () =>
|
|
component: () =>
|
|
- import('@/views/systemManagement/accountManagement/index'),
|
|
|
|
|
|
+ import('@/views/systemManagement/accountManagement/index'),
|
|
meta: {
|
|
meta: {
|
|
title: '账号列表',
|
|
title: '账号列表',
|
|
// icon: 'table',
|
|
// icon: 'table',
|
|
@@ -419,7 +429,7 @@ export const asyncRoutes = [
|
|
path: 'RoleManagement',
|
|
path: 'RoleManagement',
|
|
name: '角色列表',
|
|
name: '角色列表',
|
|
component: () =>
|
|
component: () =>
|
|
- import('@/views/systemManagement/roleManagement/index'),
|
|
|
|
|
|
+ import('@/views/systemManagement/roleManagement/index'),
|
|
meta: {
|
|
meta: {
|
|
title: '角色列表',
|
|
title: '角色列表',
|
|
// icon: 'tree',
|
|
// icon: 'tree',
|