Commit 5d34246b authored by lixy's avatar lixy

会员录入-路由

parent 59899f38
...@@ -335,6 +335,12 @@ export const asyncRouterMap = [{ ...@@ -335,6 +335,12 @@ export const asyncRouterMap = [{
component: _import('vehicle/vehicleUpkeepLog/index'), component: _import('vehicle/vehicleUpkeepLog/index'),
name: '车辆保养记录', name: '车辆保养记录',
authority: 'vehicleUpkeepLog' authority: 'vehicleUpkeepLog'
},
{
path: 'vehicleSchedulManage',
component: _import('vehicle/vehicleSchedulManage/index'),
name: '车辆排班管理',
authority: 'vehicleSchedulManage'
} }
] ]
}, },
...@@ -386,67 +392,72 @@ export const asyncRouterMap = [{ ...@@ -386,67 +392,72 @@ export const asyncRouterMap = [{
} }
] ]
}, },
{ {
path: '/purseManage', path: '/purseManage',
component: Layout, component: Layout,
name: '钱包管理', name: '钱包管理',
icon: 'setting', icon: 'setting',
authority: 'purseManage', authority: 'purseManage',
children: [ children: [
{ {
path: 'incomeOverview', path: 'incomeOverview',
component: _import('purseManage/incomeOverview'), component: _import('purseManage/incomeOverview'),
name: '收益总览', name: '收益总览',
authority: 'incomeOverview' authority: 'incomeOverview'
}, },
{ {
path: 'gainRecord', path: 'gainRecord',
component: _import('purseManage/gainRecord'), component: _import('purseManage/gainRecord'),
name: '收益记录', name: '收益记录',
authority: 'gainRecord' authority: 'gainRecord'
}, },
{ {
path: 'commissionSettings', path: 'commissionSettings',
component: _import('purseManage/commissionSettings'), component: _import('purseManage/commissionSettings'),
name: '佣金设置比例', name: '佣金设置比例',
authority: 'commissionSettings' authority: 'commissionSettings'
} }
] ]
}, },
, { {
path: '/userManagement', path: '/userManagement',
component: Layout, component: Layout,
name: '用户管理', name: '用户管理',
icon: 'setting', icon: 'setting',
authority: 'userManagement', authority: 'userManagement',
children: [ children: [
{ {
path: 'userList', path: 'userList',
component: _import('userManagement/userList/index'), component: _import('userManagement/userList/index'),
name: '用户列表', name: '用户列表',
authority: 'userList' authority: 'userList'
}, },
{ {
path: 'memberManagement', path: 'memberManagement',
component: _import('userManagement/memberManagement/index'), component: _import('userManagement/memberManagement/index'),
name: '会员管理', name: '会员管理',
authority: 'memberManagement' authority: 'memberManagement'
} },
] {
}, path: 'memberEnter',
{ component: _import('userManagement/memberEnter'),
path: '/appManagement', name: '会员录入',
component: Layout, authority: 'memberEnter'
name: 'app管理', }
icon: 'setting', ]
authority: 'appManagement', },
children: [ {
{ path: '/appManagement',
path: 'appVersion', component: Layout,
component: _import('appManagement/appVersion/index'), name: 'app管理',
name: 'app版本管理', icon: 'setting',
authority: 'appVersion' authority: 'appManagement',
} children: [
] {
} path: 'appVersion',
]; component: _import('appManagement/appVersion/index'),
name: 'app版本管理',
authority: 'appVersion'
}
]
}];
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment