123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- // 网站基本设置
- export const siteInfo = {
- display: false,
- zhTitle: '食堂管理平台',
- logo_url: '/src/assets/logo.png'
- };
- // 菜单设置
- export const menuInfo = {
- info: {
- display: false,
- mode: 'horizontal',
- backColor: '#242f42',
- textColor: '#ffffff'
- },
- menuList: [
- // {
- // _id: '65a479b4969adc42d8feea73',
- // name: '首页',
- // order_num: 1,
- // path: '/homeIndex',
- // component: '/home/index',
- // type: '1',
- // is_use: '0',
- // for_platform: '0'
- // },
- // {
- // _id: '65a479b4969adc42d8feea71',
- // name: '系统设置',
- // order_num: 2,
- // type: '0',
- // is_use: '0',
- // for_platform: '0',
- // children: [
- // {
- // _id: '65a479b4969adc42d8feea75',
- // name: '菜单设置',
- // parent_id: '65a479b4969adc42d8feea71',
- // order_num: 1,
- // path: '/system/menus',
- // component: '/system/menus/index',
- // type: '1',
- // is_use: '0',
- // for_platform: '0',
- // parent_name: '系统设置'
- // },
- // {
- // _id: '65a479b4969adc42d8feea76',
- // name: '角色管理',
- // parent_id: '65a479b4969adc42d8feea71',
- // order_num: 2,
- // path: '/system/role',
- // component: '/system/role/index',
- // type: '1',
- // is_use: '0',
- // for_platform: '0',
- // parent_name: '系统设置'
- // },
- // {
- // _id: '65a479b4969adc42d8feea77',
- // name: '字典管理',
- // parent_id: '65a479b4969adc42d8feea71',
- // order_num: 3,
- // path: '/system/dict',
- // component: '/system/dict/index',
- // type: '1',
- // is_use: '0',
- // for_platform: '0',
- // parent_name: '系统设置'
- // },
- // {
- // _id: '65a479b4969adc42d8feea78',
- // name: '字典数据',
- // parent_id: '65a479b4969adc42d8feea71',
- // order_num: 4,
- // path: '/system/dictData',
- // component: '/system/dictData/index',
- // type: '2',
- // is_use: '0',
- // for_platform: '0',
- // parent_name: '系统设置'
- // }
- // ]
- // },
- // {
- // _id: '65a479b4969adc42d8feea72',
- // name: '用户管理',
- // order_num: 3,
- // type: '0',
- // is_use: '0',
- // for_platform: '0',
- // children: [
- // {
- // _id: '65a479b4969adc42d8feea7a',
- // name: '管理员用户',
- // parent_id: '65a479b4969adc42d8feea72',
- // order_num: 1,
- // path: '/user/admin',
- // component: '/user/admin/index',
- // type: '1',
- // is_use: '0',
- // for_platform: '0',
- // parent_name: '用户管理'
- // },
- // {
- // _id: '65a479b4969adc42d8feea7b',
- // name: '平台用户',
- // parent_id: '65a479b4969adc42d8feea72',
- // order_num: 2,
- // path: '/user/user',
- // component: '/user/user/index',
- // type: '1',
- // is_use: '0',
- // for_platform: '0',
- // parent_name: '用户管理'
- // }
- // ]
- // },
- // {
- // _id: '65a479b4969adc42d8feea7e',
- // name: '菜品管理',
- // order_num: 5,
- // path: '/menu',
- // component: '/menu/index',
- // type: '1',
- // is_use: '0',
- // for_platform: '0'
- // },
- // {
- // _id: '65a479b4969adc42d8feea7e',
- // name: '安排管理',
- // order_num: 6,
- // path: '/arrange',
- // component: '/arrange/index',
- // type: '1',
- // is_use: '0',
- // for_platform: '0'
- // },
- // {
- // _id: '65a479b4969adc42d8feea7f',
- // name: '订单管理',
- // order_num: 7,
- // path: '/order',
- // component: '/order/index',
- // type: '1',
- // is_use: '0',
- // for_platform: '0'
- // },
- // {
- // _id: '65a479b4969adc42d8feea80',
- // name: '新闻管理',
- // order_num: 8,
- // path: '/news',
- // component: '/news/index',
- // type: '1',
- // is_use: '0',
- // for_platform: '0'
- // },
- // {
- // _id: '65a479b4969adc42d8feea7c',
- // name: '修改密码',
- // order_num: 999,
- // path: '/acccount/updatepd',
- // component: '/acccount/updatepd/index',
- // type: '1',
- // is_use: '0',
- // for_platform: '0'
- // }
- ]
- };
|