| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- export default [
- {
- path: '/',
- component: '../layouts/BlankLayout',
- routes: [
- {
- path: '/user',
- component: '../layouts/UserLayout',
- routes: [
- {
- name: 'login',
- path: '/user/login',
- component: './user/login'
- }
- ]
- },
- {
- path: '/',
- component: '../layouts/SecurityLayout',
- routes: [
- {
- path: '/',
- component: '../layouts/BasicLayout',
- authority: ['admin', 'client_access'],
- routes: [
- {
- path: '/',
- redirect: '/customer/contact'
- },
- {
- path: '/workbench',
- name: 'workbench',
- icon: 'icon-chess',
- routes: [
- {
- path: '/workbench',
- redirect: '/workbench/dashboard'
- },
- {
- path: '/workbench/dashboard',
- name: 'dashboard',
- icon: 'icon-tachometer-alt',
- component: './Workbench/Dashboard'
- }
- ]
- },
- {
- path: '/customer',
- name: 'customer',
- icon: 'icon-address-book-o',
- routes: [
- {
- path: '/customer',
- redirect: '/customer/client',
- authority: ['admin', 'client_access']
- },
- {
- path: '/customer/client',
- name: 'client',
- icon: 'icon-address-book',
- component: './Customer/Client',
- authority: ['admin', 'client_access']
- },
- {
- path: '/customer/company',
- name: 'company',
- icon: 'icon-building',
- component: './Customer/Company',
- authority: ['admin', 'company_access']
- },
- {
- path: '/customer/business',
- name: 'business',
- icon: 'icon-usd-circle',
- component: './Customer/Business'
- },
- {
- path: '/customer/test',
- name: 'test',
- icon: 'icon-usd-circle',
- component: './Customer/Test'
- }
- ]
- },
- {
- path: '/product',
- name: 'product',
- icon: 'icon-box',
- routes: [
- {
- path: '/product',
- redirect: '/product/lock'
- },
- {
- path: '/product/lock',
- name: 'lock',
- icon: 'icon-magic',
- routes: [
- {
- path: '/product/lock',
- redirect: '/product/lock/lockstore'
- },
- {
- path: '/product/lock/lockstore',
- name: 'lockstore',
- component: './Product/Lock/LockStore'
- },
- {
- path: '/product/lock/lockcount',
- name: 'lockcount',
- component: './Product/Lock/LockCount'
- }
- ]
- },
- {
- path: '/product/cloud',
- name: 'cloud',
- icon: 'icon-cloud',
- routes: [
- {
- path: '/product/cloud',
- redirect: '/product/cloud/building'
- },
- {
- path: '/product/cloud/building',
- name: 'build',
- component: './Product/Cloud/Building'
- },
- {
- path: '/product/cloud/curing',
- name: 'curing',
- component: './Product/Cloud/Curing'
- }
- ]
- }
- ]
- },
- {
- path: '/staff',
- name: 'staff',
- icon: 'icon-users',
- routes: [
- {
- path: '/staff',
- redirect: '/staff/employee'
- },
- {
- path: '/staff/employee',
- name: 'employee',
- icon: 'icon-users',
- component: './Staff/Employee'
- }
- ]
- }
- ]
- }
- ]
- }
- ]
- },
- {
- component: './404'
- }
- ]
|