|
@@ -1,40 +1,49 @@
|
|
|
+// 系统: 1;
|
|
|
+// 审核: 2;
|
|
|
+// 库存: 3;
|
|
|
+// 财务: 4;
|
|
|
export const system = [{ icon: 'icon-shouye', index: '/adminCenter/homeIndex', title: '系统首页' }];
|
|
|
export const userMenu = [
|
|
|
{
|
|
|
icon: 'icon-yonghu',
|
|
|
index: '/adminCenter/user/index',
|
|
|
title: '用户管理',
|
|
|
+ module: '1',
|
|
|
},
|
|
|
{
|
|
|
- icon: 'icon-yonghu',
|
|
|
+ icon: 'icon-shenbao',
|
|
|
index: '/adminCenter/declare/index',
|
|
|
title: '申报审核',
|
|
|
+ module: '1|2',
|
|
|
},
|
|
|
{
|
|
|
- icon: 'icon-yonghu',
|
|
|
+ icon: 'icon-caigou',
|
|
|
index: '/adminCenter/purchase/index',
|
|
|
title: '采购管理',
|
|
|
+ module: '1|2',
|
|
|
},
|
|
|
{
|
|
|
- icon: 'icon-yonghu',
|
|
|
+ icon: 'icon-daishouhuo',
|
|
|
index: '/adminCenter/collect/index',
|
|
|
title: '收货管理',
|
|
|
+ module: '1|3',
|
|
|
},
|
|
|
{
|
|
|
- icon: 'icon-yonghu',
|
|
|
+ icon: 'icon-cangku_kucun',
|
|
|
index: '/adminCenter/stock/index',
|
|
|
title: '库存管理',
|
|
|
+ module: '1|3',
|
|
|
},
|
|
|
{
|
|
|
- icon: 'icon-yonghu',
|
|
|
+ icon: 'icon-caiwu',
|
|
|
index: '/adminCenter/finance/index',
|
|
|
title: '财务管理',
|
|
|
+ module: '1|4',
|
|
|
},
|
|
|
{
|
|
|
- icon: 'icon-yonghu',
|
|
|
+ icon: 'icon-leixing',
|
|
|
index: '/adminCenter/type/index',
|
|
|
title: '商品类型',
|
|
|
+ module: '1',
|
|
|
},
|
|
|
- // { icon: 'icon-ceshi', index: '/adminCenter/user/index', title: '审核管理' },
|
|
|
- // { icon: 'icon-ceshi', index: '/adminCenter/user/index', title: '库存管理' },
|
|
|
];
|