UNPKG

gxd-vue-library

Version:

依赖与element Ui插件库,聚福宝福利PC端插件库

34 lines (30 loc) 803 B
'use strict'; import Layout from '@/layout' import roles from '@/constant/permissions' //引用权限值 const role = roles.supplierStat; const supplierStatRouter = { path: '/stat', sort: 95, component: Layout, name: '供货商统计', redirect: '/stat/index', meta: { title: '供货商统计', icon: 'xdicon_rizhi', iconSize: 22, }, children: [ { path: 'index', name: '供货商统计', component: () => import ('@/viewsStat/index/index'), meta: { title: '供货商统计', icon: 'xdicon_rizhi', iconSize: 22, role: [role.totalCounts, role.productCycCounts, role.supplierCycCounts, role.supplierCycSales, role.productCycSales, role.productCategoryCycSales] } } ] } export default supplierStatRouter