| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- import Layout from '@/layout'
- // import Layout from '../../layout'
- import { roterPre } from '@/settings'
- const configRouter =
- {
- path: `${roterPre}/config`,
- name: 'system_config',
- meta: {
- icon: 'dashboard',
- title: '系统配置'
- },
- alwaysShow: true,
- component: Layout,
- children: [
- {
- path: 'classify',
- name: 'system_config_classify',
- meta: {
- title: '配置分类',
- noCache: true
- },
- component: () => import('@/views/system/config/classify')
- },
- {
- path: 'setting',
- name: 'system_config_setting',
- meta: {
- title: '配置管理',
- noCache: true
- },
- component: () => import('@/views/system/config/setting')
- },
- {
- path: 'picture',
- name: 'system_config_picture',
- meta: {
- title: '素材管理',
- noCache: true
- },
- component: () => import('@/views/system/config/picture')
- },
- {
- path: 'service',
- name: 'Service',
- meta: {
- title: '客服管理'
- },
- component: () => import('@/views/system/service/index')
-
- },
- {
- path: 'chat',
- name: 'chat',
- meta: {
- title: '客服聊天'
- },
- component: () => import('@/views/chatroom/index')
-
- },
- {
- path: 'helper',
- name: 'kefu',
- meta: {
- title: '客服设置'
- },
- component: () => import('@/views/setting/helper/index')
- },
- {
- path: 'agree',
- name: 'system_config_agree',
- meta: {
- title: '协议设置',
- noCache: true
- },
- component: () => import('@/views/agreement/agree/index')
- },
- {
- path: 'contribution',
- name: 'system_contribution',
- meta: {
- title: '商家贡献值',
- noCache: true
- },
- component: () => import('@/views/contribution/contribution/index')
- }
- ]
- }
- export default configRouter
|