|
@@ -3,7 +3,8 @@ import {
|
|
|
UserLayout,
|
|
|
BasicLayout,
|
|
|
RouteView,
|
|
|
- PageView
|
|
|
+ PageView,
|
|
|
+ BlankLayout
|
|
|
} from '@/layouts'
|
|
|
|
|
|
export const asyncRouterMap = [{
|
|
@@ -11,7 +12,7 @@ export const asyncRouterMap = [{
|
|
|
name: 'index',
|
|
|
component: BasicLayout,
|
|
|
meta: {
|
|
|
- title: 'IT后台'
|
|
|
+ title: '运营后台'
|
|
|
},
|
|
|
redirect: '/home',
|
|
|
children: [{
|
|
@@ -33,8 +34,7 @@ export const asyncRouterMap = [{
|
|
|
icon: 'home',
|
|
|
hiddenHeaderContent: true
|
|
|
}
|
|
|
- }
|
|
|
- ]
|
|
|
+ }]
|
|
|
},
|
|
|
{
|
|
|
path: '/changePwd',
|
|
@@ -47,217 +47,379 @@ export const asyncRouterMap = [{
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
- path: '/tenants',
|
|
|
- redirect: '/tenants/list',
|
|
|
+ path: '/shop',
|
|
|
+ redirect: '/shop/goods',
|
|
|
component: PageView,
|
|
|
meta: {
|
|
|
- title: '租户管理',
|
|
|
- icon: 'team',
|
|
|
- permission: 'M_tenants_list'
|
|
|
+ title: '商品',
|
|
|
+ icon: 'shop',
|
|
|
+ permission: 'M_shop'
|
|
|
},
|
|
|
- children: [{
|
|
|
- path: '/tenants/list',
|
|
|
- name: 'tenantsList',
|
|
|
- component: () => import(/* webpackChunkName: "tenants" */ '@/views/tenants/tenantsList.vue'),
|
|
|
- meta: {
|
|
|
- title: '租户列表',
|
|
|
- icon: 'team',
|
|
|
- permission: 'M_tenants_list'
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/shop/goods',
|
|
|
+ redirect: '/shop/goods/list',
|
|
|
+ name: 'goodsList',
|
|
|
+ component: RouteView,
|
|
|
+ meta: {
|
|
|
+ title: '商品管理',
|
|
|
+ icon: 'shopping',
|
|
|
+ permission: 'M_goodsManage_list'
|
|
|
+ },
|
|
|
+ hideChildrenInMenu: true,
|
|
|
+ children: [{
|
|
|
+ path: '/shop/goods/list',
|
|
|
+ name: 'goodsListList',
|
|
|
+ component: () => import(/* webpackChunkName: "shop" */ '@/views/shop/goodsList.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '商品列表',
|
|
|
+ icon: 'shopping',
|
|
|
+ hidden: true,
|
|
|
+ permission: 'M_goodsManage_list'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/shop/goods/add',
|
|
|
+ name: 'goodsListAdd',
|
|
|
+ component: () => import(/* webpackChunkName: "shop" */ '@/views/shop/goodsEdit.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '新增商品',
|
|
|
+ icon: 'shopping',
|
|
|
+ hidden: true,
|
|
|
+ permission: 'B_goodsManage_add'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/shop/goods/edit/:id',
|
|
|
+ name: 'goodsListEdit',
|
|
|
+ component: () => import(/* webpackChunkName: "shop" */ '@/views/shop/goodsEdit.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '编辑商品',
|
|
|
+ icon: 'shopping',
|
|
|
+ hidden: true,
|
|
|
+ permission: 'B_goodsManage_edit'
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/shop/goodsShelves',
|
|
|
+ name: 'goodsShelves',
|
|
|
+ component: () => import(/* webpackChunkName: "shop" */ '@/views/shop/goodsShelves.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '商品排序',
|
|
|
+ icon: 'flag',
|
|
|
+ permission: 'M_goodsShelves_0'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/shopSetting/goodsClass',
|
|
|
+ name: 'goodsClass',
|
|
|
+ component: () => import(/* webpackChunkName: "shop" */ '@/views/shopSetting/goodsClass.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '商品分类管理',
|
|
|
+ icon: 'folder',
|
|
|
+ permission: 'M_goodsClass_list'
|
|
|
+ }
|
|
|
}
|
|
|
- }]
|
|
|
+ ]
|
|
|
},
|
|
|
- // 考评管理
|
|
|
{
|
|
|
- path: '/evaluation',
|
|
|
- redirect: '/evaluation/evaluationItem',
|
|
|
+ path: '/order',
|
|
|
+ redirect: '/order/orderManage',
|
|
|
component: PageView,
|
|
|
meta: {
|
|
|
- title: '考评管理',
|
|
|
- icon: 'block',
|
|
|
- permission: 'M_evaluation_0'
|
|
|
+ title: '订单',
|
|
|
+ icon: 'profile',
|
|
|
+ permission: 'M_orderManage_list'
|
|
|
},
|
|
|
- children: [{
|
|
|
- path: '/evaluation/evaluationItem',
|
|
|
- name: 'EvaluationItem',
|
|
|
- component: () => import(/* webpackChunkName: "evaluation" */
|
|
|
- '@/views/evaluation/evaluationItem/EvaluationItem.vue'),
|
|
|
- meta: {
|
|
|
- title: '考评项目',
|
|
|
- icon: 'save',
|
|
|
- permission: 'M_evaluationItem_list'
|
|
|
- }
|
|
|
- }, {
|
|
|
- path: '/evaluation/evaluationPlan',
|
|
|
- name: 'EvaluationPlan',
|
|
|
- component: () => import(/* webpackChunkName: "evaluation" */
|
|
|
- '@/views/evaluation/evaluationPlan/EvaluationPlan.vue'),
|
|
|
- meta: {
|
|
|
- title: '考评方案',
|
|
|
- icon: 'switcher',
|
|
|
- permission: 'M_evaluationPlan_list'
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/order/orderManage',
|
|
|
+ redirect: '/order/orderManage/list',
|
|
|
+ name: 'orderManage',
|
|
|
+ component: RouteView,
|
|
|
+ meta: {
|
|
|
+ title: '订单管理',
|
|
|
+ icon: 'profile',
|
|
|
+ permission: 'M_orderManage_list'
|
|
|
+ },
|
|
|
+ hideChildrenInMenu: true,
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/order/orderManage/list',
|
|
|
+ name: 'orderManageList',
|
|
|
+ component: () => import(/* webpackChunkName: "order" */ '@/views/shop/shopOrder.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '订单列表',
|
|
|
+ icon: 'shopping',
|
|
|
+ hidden: true,
|
|
|
+ permission: 'M_orderManage_list'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/order/orderManage/detail/:id',
|
|
|
+ name: 'orderManageDetail',
|
|
|
+ component: () => import(/* webpackChunkName: "order" */ '@/views/shop/orderDetail.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '订单详情',
|
|
|
+ icon: 'profile',
|
|
|
+ hidden: true,
|
|
|
+ permission: 'B_orderManage_detail'
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
}
|
|
|
- }]
|
|
|
+ ]
|
|
|
},
|
|
|
- // 业务 设置setting
|
|
|
+ // 用户
|
|
|
{
|
|
|
- path: '/bnSetting',
|
|
|
- redirect: '/bnSetting/menusAuth',
|
|
|
+ path: '/userInfo',
|
|
|
+ redirect: '/userInfo/userManage',
|
|
|
component: PageView,
|
|
|
meta: {
|
|
|
- title: '平台设置',
|
|
|
- icon: 'security-scan',
|
|
|
- permission: 'M_bnSetting_0'
|
|
|
+ title: '用户',
|
|
|
+ icon: 'user',
|
|
|
+ permission: 'M_user'
|
|
|
},
|
|
|
- children: [{
|
|
|
- path: '/bnSetting/menusAuth',
|
|
|
- name: 'menusAuth',
|
|
|
- component: () => import(/* webpackChunkName: "bnSetting" */ '@/views/bnSetting/menusAuthTab.vue'),
|
|
|
- meta: {
|
|
|
- title: '菜单授权',
|
|
|
- icon: 'property-safety',
|
|
|
- permission: 'M_bnSetting_0'
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/userInfo/userManage',
|
|
|
+ redirect: '/userInfo/userManageList/list',
|
|
|
+ name: 'userManageS',
|
|
|
+ component: RouteView,
|
|
|
+ meta: {
|
|
|
+ title: '用户管理',
|
|
|
+ icon: 'profile',
|
|
|
+ permission: 'M_user_userManage_list'
|
|
|
+ },
|
|
|
+ hideChildrenInMenu: true,
|
|
|
+ children: [{
|
|
|
+ path: '/userInfo/userManageList/list',
|
|
|
+ name: 'userManageList',
|
|
|
+ component: () => import(/* webpackChunkName: "userManageList" */ '@/views/userInfo/userManageList.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '用户列表',
|
|
|
+ icon: 'team',
|
|
|
+ hidden: true,
|
|
|
+ permission: 'M_user_userManage_list'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/userInfo/userManageList_user/detail/:id',
|
|
|
+ name: 'userManageDetail',
|
|
|
+ component: () => import(/* webpackChunkName: "userManageDetail" */ '@/views/userInfo/userDetails.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '用户详情',
|
|
|
+ icon: 'profile',
|
|
|
+ hidden: true,
|
|
|
+ permission: 'B_user_userManage_userDetails'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/userInfo/userManageList_Ld/detail/:id',
|
|
|
+ name: 'ledouDetail',
|
|
|
+ component: () => import(/* webpackChunkName: "LdDetails" */ '@/views/userInfo/LdDetails.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '乐豆明细',
|
|
|
+ icon: 'profile',
|
|
|
+ hidden: true,
|
|
|
+ permission: 'B_user_userManage_LdDetails'
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/userInfo/releaseRecord/list',
|
|
|
+ name: 'releaseRecordList',
|
|
|
+ component: () => import(/* webpackChunkName: "releaseRecord" */ '@/views/releaseRecord/releaseRecordList.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '投放记录',
|
|
|
+ icon: 'container',
|
|
|
+ permission: 'M_user_releaseRecord'
|
|
|
+ }
|
|
|
}
|
|
|
- }]
|
|
|
+ ]
|
|
|
},
|
|
|
{
|
|
|
- path: '/appSetting',
|
|
|
- redirect: '/appSetting/bannerSetting',
|
|
|
+ path: '/shopSetting',
|
|
|
+ redirect: '/shopSetting/bannerSetting',
|
|
|
component: PageView,
|
|
|
meta: {
|
|
|
- title: 'APP设置',
|
|
|
+ title: '商城设置',
|
|
|
icon: 'appstore',
|
|
|
- permission: 'M_appSetting'
|
|
|
- },
|
|
|
- children: [{
|
|
|
- path: '/appSetting/bannerSetting',
|
|
|
- name: 'bannerSetting',
|
|
|
- component: () => import(/* webpackChunkName: "appSetting" */ '@/views/appSetting/bannerSetting.vue'),
|
|
|
- meta: {
|
|
|
- title: '营销图设置',
|
|
|
- icon: 'file-image',
|
|
|
- permission: 'M_banner'
|
|
|
- }
|
|
|
+ permission: 'M_AdBanner_list'
|
|
|
},
|
|
|
- {
|
|
|
- path: '/editionSetting',
|
|
|
- redirect: '/editionSetting/list',
|
|
|
- name: 'editionSetting',
|
|
|
- component: RouteView,
|
|
|
- meta: {
|
|
|
- title: '版本设置',
|
|
|
- icon: 'info-circle',
|
|
|
- permission: 'M_banben'
|
|
|
- },
|
|
|
- hideChildrenInMenu: true,
|
|
|
- children: [{
|
|
|
- path: '/editionSetting/list',
|
|
|
- name: 'editionSetting_list',
|
|
|
- component: () => import(/* webpackChunkName: "appSetting" */
|
|
|
- '@/views/appSetting/editionSetting.vue'),
|
|
|
- meta: {
|
|
|
- title: '列表',
|
|
|
- icon: 'interaction',
|
|
|
- permission: 'M_banben'
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/editionSetting/add',
|
|
|
- name: 'editionSetting_add',
|
|
|
- component: () => import(/* webpackChunkName: "appSetting" */
|
|
|
- '@/views/appSetting/addEditionSetting.vue'),
|
|
|
- meta: {
|
|
|
- title: '新增',
|
|
|
- icon: 'crown',
|
|
|
- hidden: true
|
|
|
- }
|
|
|
- },
|
|
|
+ children: [
|
|
|
{
|
|
|
- path: '/editionSetting/add',
|
|
|
- name: 'editionSetting_edit',
|
|
|
- component: () => import(/* webpackChunkName: "appSetting" */
|
|
|
- '@/views/appSetting/addEditionSetting.vue'),
|
|
|
+ path: '/shopSetting/bannerSetting',
|
|
|
+ name: 'bannerSetting',
|
|
|
+ component: () => import(/* webpackChunkName: "shopSetting" */ '@/views/shop/bannerSetting.vue'),
|
|
|
meta: {
|
|
|
- title: '编辑',
|
|
|
- icon: 'crown',
|
|
|
- hidden: true
|
|
|
+ title: '推广位设置',
|
|
|
+ icon: 'picture',
|
|
|
+ permission: 'M_AdBanner_list'
|
|
|
}
|
|
|
}
|
|
|
- ]
|
|
|
- }
|
|
|
]
|
|
|
-
|
|
|
},
|
|
|
{
|
|
|
- path: '/menusAuth',
|
|
|
- redirect: '/bnSetting/menusAuth',
|
|
|
+ path: '/equipmentManage',
|
|
|
+ redirect: '/equipmentManage/network',
|
|
|
component: PageView,
|
|
|
meta: {
|
|
|
- title: '菜单管理',
|
|
|
- icon: 'bars',
|
|
|
- permission: 'M_menusAuth_0'
|
|
|
+ title: '网点/设备',
|
|
|
+ icon: 'apartment',
|
|
|
+ permission: 'M_networkEquipment'
|
|
|
},
|
|
|
children: [{
|
|
|
- path: '/menusAuth/storeMenus',
|
|
|
- name: 'storeMenus',
|
|
|
- component: () => import(/* webpackChunkName: "bnSetting" */ '@/views/bnSetting/menu/storeMenus.vue'),
|
|
|
+ path: '/equipmentManage/network',
|
|
|
+ name: 'network',
|
|
|
+ component: () => import(/* webpackChunkName: "equipmentManage" */ '@/views/equipmentManage/network/network.vue'),
|
|
|
meta: {
|
|
|
- title: '巡店菜单管理',
|
|
|
- icon: 'shop',
|
|
|
- permission: 'M_menusAuth_storeMenus'
|
|
|
+ title: '网点管理',
|
|
|
+ icon: 'cluster',
|
|
|
+ permission: 'M_network_list'
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
- path: '/menusAuth/adminMenus',
|
|
|
- name: 'adminMenus',
|
|
|
- component: () => import(/* webpackChunkName: "bnSetting" */ '@/views/bnSetting/menu/adminMenus.vue'),
|
|
|
+ path: '/equipmentManage/equipment',
|
|
|
+ name: 'equipment',
|
|
|
+ component: () => import(/* webpackChunkName: "equipmentManage" */ '@/views/equipmentManage/equipment/equipment.vue'),
|
|
|
meta: {
|
|
|
- title: '运营菜单管理',
|
|
|
- icon: 'appstore',
|
|
|
- permission: 'M_menusAuth_adminMenus'
|
|
|
+ title: '设备管理',
|
|
|
+ icon: 'usb',
|
|
|
+ permission: 'M_equipment_list'
|
|
|
}
|
|
|
},
|
|
|
{
|
|
|
- path: '/menusAuth/menu',
|
|
|
- name: 'powerMenu',
|
|
|
- component: () => import(/* webpackChunkName: "auth" */ '@/views/power/menu/menu.vue'),
|
|
|
+ path: '/equipmentManage/boxSetting',
|
|
|
+ name: 'boxSetting',
|
|
|
+ component: () => import(/* webpackChunkName: "equipmentManage" */ '@/views/equipmentManage/boxSetting/boxSetting.vue'),
|
|
|
meta: {
|
|
|
- title: 'IT菜单管理',
|
|
|
- icon: 'profile',
|
|
|
- permission: 'M_menusAuth_menu'
|
|
|
+ title: '箱体类型设置',
|
|
|
+ icon: 'block',
|
|
|
+ permission: 'M_boxSetting_list'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/equipmentManage/exchangeSetting',
|
|
|
+ name: 'exchangeSetting',
|
|
|
+ component: () => import(/* webpackChunkName: "equipmentManage" */
|
|
|
+ '@/views/equipmentManage/exchangeSetting/ExchangeSetting.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '兑换规则设置',
|
|
|
+ icon: 'build',
|
|
|
+ permission: 'M_exchangeSetting_list'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/equipmentManage/openTimeSetting',
|
|
|
+ name: 'openTimeSetting',
|
|
|
+ component: () => import(/* webpackChunkName: "equipmentManage" */ '@/views/equipmentManage/openTimeSetting/OpenTimeSetting.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '投放时间设置',
|
|
|
+ icon: 'dashboard',
|
|
|
+ permission: 'M_openTimeSetting_list'
|
|
|
}
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
+ {
|
|
|
+ path: '/businessManage',
|
|
|
+ redirect: '/businessManage/partnerManage',
|
|
|
+ component: PageView,
|
|
|
+ meta: {
|
|
|
+ title: '乐享亭',
|
|
|
+ icon: 'bank',
|
|
|
+ permission: 'M_businessManage'
|
|
|
+ },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/businessManage/partnerManage',
|
|
|
+ name: 'partnerManage',
|
|
|
+ component: () => import(/* webpackChunkName: "businessManage" */ '@/views/businessManage/partnerManage/partnerManage.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '商户管理',
|
|
|
+ icon: 'solution',
|
|
|
+ permission: 'M_partnerManage_list'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/businessManage/userManage',
|
|
|
+ name: 'userManage',
|
|
|
+ component: () => import(/* webpackChunkName: "businessManage" */ '@/views/businessManage/userManage/userManage.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '用户管理',
|
|
|
+ icon: 'folder',
|
|
|
+ permission: 'M_userManage_list'
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/supplier',
|
|
|
+ redirect: '/supplier/list',
|
|
|
+ component: PageView,
|
|
|
+ meta: {
|
|
|
+ title: '供货商',
|
|
|
+ icon: 'user-add',
|
|
|
+ permission: 'M_supplier_list'
|
|
|
+ },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/supplier/list',
|
|
|
+ name: 'supplier',
|
|
|
+ component: () => import(/* webpackChunkName: "supplier" */ '@/views/shopSetting/supplier.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '供货商管理',
|
|
|
+ icon: 'solution',
|
|
|
+ permission: 'M_supplier_list'
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ },
|
|
|
// auth
|
|
|
{
|
|
|
path: '/auth',
|
|
|
redirect: '/auth/userList',
|
|
|
component: PageView,
|
|
|
meta: {
|
|
|
- title: 'IT权限管理',
|
|
|
+ title: '权限管理',
|
|
|
icon: 'lock',
|
|
|
permission: 'M_auth_0'
|
|
|
},
|
|
|
- children: [{
|
|
|
- path: '/auth/userList',
|
|
|
- name: 'powerUserList',
|
|
|
- component: () => import(/* webpackChunkName: "auth" */ '@/views/power/user/userList.vue'),
|
|
|
- meta: {
|
|
|
- title: '用户管理',
|
|
|
- icon: 'user',
|
|
|
- permission: 'M_auth_userList'
|
|
|
- }
|
|
|
- },
|
|
|
- {
|
|
|
- path: '/auth/roleList',
|
|
|
- name: 'powerRoleList',
|
|
|
- component: () => import(/* webpackChunkName: "auth" */ '@/views/power/role/roleList.vue'),
|
|
|
- meta: {
|
|
|
- title: '角色管理',
|
|
|
- icon: 'solution',
|
|
|
- permission: 'M_auth_roleList'
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/auth/userList',
|
|
|
+ name: 'powerUserList',
|
|
|
+ component: () => import(/* webpackChunkName: "auth" */ '@/views/power/user/userList.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '用户管理',
|
|
|
+ icon: 'user',
|
|
|
+ permission: 'M_power_user_list'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/auth/roleList',
|
|
|
+ name: 'powerRoleList',
|
|
|
+ component: () => import(/* webpackChunkName: "auth" */ '@/views/power/role/roleList.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '角色管理',
|
|
|
+ icon: 'solution',
|
|
|
+ permission: 'M_power_role_list'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ path: '/menusAuth/menu',
|
|
|
+ name: 'powerMenu',
|
|
|
+ component: () => import(/* webpackChunkName: "auth" */ '@/views/power/menu/menu.vue'),
|
|
|
+ meta: {
|
|
|
+ title: '菜单管理',
|
|
|
+ icon: 'profile',
|
|
|
+ permission: 'M_power_menu_list'
|
|
|
+ }
|
|
|
}
|
|
|
- }
|
|
|
]
|
|
|
},
|
|
|
{
|
|
@@ -280,26 +442,6 @@ export const asyncRouterMap = [{
|
|
|
permission: 'M_sys_dataDictionary'
|
|
|
}
|
|
|
},
|
|
|
- // {
|
|
|
- // path: '/setting/register',
|
|
|
- // name: 'powerRegister',
|
|
|
- // component: () => import(/* webpackChunkName: "setting" */ '@/views/power/register/register.vue'),
|
|
|
- // meta: {
|
|
|
- // title: '参数管理',
|
|
|
- // icon: 'key'
|
|
|
- // // permission: 'M_sys_register'
|
|
|
- // }
|
|
|
- // },
|
|
|
- // {
|
|
|
- // path: '/setting/jobs',
|
|
|
- // name: 'powerJobs',
|
|
|
- // component: () => import(/* webpackChunkName: "setting" */ '@/views/power/job/jobs.vue'),
|
|
|
- // meta: {
|
|
|
- // title: '定时器',
|
|
|
- // icon: 'alert',
|
|
|
- // permission: 'M_sys_job'
|
|
|
- // }
|
|
|
- // },
|
|
|
{
|
|
|
path: '/setting/OperateJournal',
|
|
|
name: 'powerOperateJournal',
|
|
@@ -308,7 +450,7 @@ export const asyncRouterMap = [{
|
|
|
meta: {
|
|
|
title: '操作日志',
|
|
|
icon: 'read',
|
|
|
- permission: 'M_operateJournal'
|
|
|
+ permission: 'M_OperateJournal'
|
|
|
}
|
|
|
}
|
|
|
]
|