123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- 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/indexModule',
- name: '首页图标设置',
- index: '2-1',
- },
- {
- icon: 'icon-rencai',
- path: '/system/banner',
- name: '广告图',
- index: '2-2',
- },
- {
- icon: 'icon-rencai',
- path: '/system/goodsTags',
- name: '商品标签',
- index: '2-3',
- },
- {
- icon: 'icon-rencai',
- path: '/system/order',
- name: '平台订单管理',
- index: '2-4',
- },
- {
- icon: 'icon-rencai',
- path: '/system/coupon',
- name: '优惠券管理',
- index: '2-5',
- },
- {
- icon: 'icon-rencai',
- path: '/system/service',
- name: '客服管理',
- index: '2-6',
- },
- ],
- },
- {
- 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/sales',
- name: '售后管理',
- index: '3-5',
- },
- ],
- },
- ];
- export const devMenu = [
- {
- icon: 'icon-shouye',
- // path: '/',
- name: '开发设置',
- index: '100',
- type: '0',
- children: [
- {
- icon: 'icon-rencai',
- path: '/dev/dict',
- name: '字典管理',
- index: '100-1',
- },
- ],
- },
- ];
|