1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- import ManageLayout from '@/views/manage/index.vue'
- import RouterView from "@/layout/router-view.vue";
- // 后台系统
- export default {
- path: '/manage',
- name: '9d2974b6-5ae9-4e5d-b032-bc2f3f4b1aa4',
- component: ManageLayout,
- redirect: '/manage/home',
- children: [
- {
- path: 'home',
- name: '4786ca99-5235-4691-a0e8-078d0365046b',
- component: () => import('@/views/manage/home/index.vue'),
- meta: {
- title: '首页',
- icon: 'home'
- }
- },
- {
- path: 'type',
- name: 'b8cc1ce5-23b9-4661-b794-cdbc96693027',
- component: () => import('@/views/manage/type/index.vue'),
- meta: {
- title: '分类管理',
- icon: 'type'
- }
- },
- {
- path: 'index',
- name: 'af1e2997-e910-4b12-a5a9-69efcba0c1da',
- component: () => import('@/views/manage/index/index.vue'),
- meta: {
- title: '索引管理',
- icon: 'relation'
- }
- },
- {
- path: 'theme',
- name: '13d9ce7a-7f9e-4a3c-941a-376ff68d254c',
- component: () => import('@/views/manage/theme/index.vue'),
- meta: {
- title: '主题设置',
- icon: 'clothing'
- }
- },
- {
- path: 'system',
- name: '1c1a19fd-ac7b-42ce-b4eb-0ac978a5dd3d',
- component: RouterView,
- meta: {
- title: '系统管理',
- icon: 'config'
- },
- children: [
- {
- path: 'user',
- name: '41baace0-ab41-4495-bff4-21ed3b3b46a1',
- component: () => import('@/views/manage/system/user/index.vue'),
- meta: {
- title: '用户管理',
- }
- },
- {
- path: 'role',
- name: 'fd4b2300-ba92-4c80-8335-648c48e6b46a',
- component: () => import('@/views/manage/system/role/index.vue'),
- meta: {
- title: '角色管理',
- }
- },
- {
- path: 'path',
- name: 'fac64bd9-23ac-4e8f-a3e5-7e479a32e00d',
- component: () => import('@/views/manage/system/log/index.vue'),
- meta: {
- title: '日志管理',
- }
- },
- ]
- }
- ]
- }
|