123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- export const system = [
- {
- icon: 'icon-shouye',
- path: '/',
- name: '系统首页',
- index: '1',
- },
- ];
- export const adminMenu = [
- {
- icon: 'icon-shouye',
- // path: '/',
- name: '系统管理',
- index: '2',
- type: '0',
- children: [
- {
- icon: 'icon-rencai',
- path: '/system/dict',
- name: '字典设置',
- index: '2-1',
- },
- ],
- },
- {
- icon: 'icon-shouye',
- name: '自营店铺',
- index: '3',
- type: '0',
- children: [
- {
- icon: 'icon-rencai',
- path: '/selfShop/info',
- name: '店铺信息',
- index: '3-1',
- },
- {
- icon: 'icon-rencai',
- path: '/selfShop/goods',
- name: '商品管理',
- index: '3-2',
- },
- {
- icon: 'icon-rencai',
- path: '/selfShop/order',
- name: '订单管理',
- index: '3-3',
- },
- {
- icon: 'icon-rencai',
- path: '/selfShop/coupon',
- name: '优惠券管理',
- index: '3-4',
- },
- ],
- },
- ];
|