123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 |
-
- export default [
- {
- path: '/',
- redirect: '/user/login',
- },
- {
- path: '/account',
- routes: [
- {
- name: 'acenter',
- path: '/account/center',
- component: './User/Center',
- },
- {
- name: 'asettings',
- path: '/account/settings',
- component: './User/Settings',
- },
- ],
- },
- {
- name: 'system',
- path: '/system',
- routes: [
- {
- name: '字典数据',
- path: '/system/dict-data/index/:id',
- component: './System/DictData',
- },
- {
- name: '分配用户',
- path: '/system/role-auth/user/:id',
- component: './System/Role/authUser',
- },
- ],
- },
- {
- path: '*',
- layout: false,
- component: './404',
- },
- {
- path: '/user',
- layout: false,
- routes: [
- {
- name: 'login',
- path: '/user/login',
- component: './User/Login',
- },
- ],
- },
- {
- name: 'Home',
- path: '/Home',
- icon: 'smile',
- routes: [
- {
- name: 'banner',
- path: '/Home/banner',
- component: './Home/banner',
- },
- ],
- },
- {
- name: 'GoinZZ',
- path: '/GoinZZ',
- icon: 'smile',
- routes: [
- {
- name: 'structure',
- path: '/GoinZZ/structure',
- component: './GoinZZ/structure',
- },
- {
- name: 'developHistory',
- path: '/GoinZZ/developHistory',
- component: './GoinZZ/developHistory',
- },
- {
- name: 'honor',
- path: '/GoinZZ/honor',
- component: './GoinZZ/honor',
- },
- ],
- },
- {
- name: 'Product',
- path: '/Product',
- icon: 'smile',
- routes: [
- {
- name: 'ProductManage',
- path: '/Product/ProductManage',
- component: './Product/ProductManage',
- },
- ],
- },
- {
- name: 'News',
- path: '/News',
- icon: 'smile',
- routes: [
- {
- name: 'NewsList',
- path: '/News/NewsList',
- component: './News/NewsList',
- },
- ],
- },
- {
- name: 'PartyWork',
- path: '/PartyWork',
- icon: 'smile',
- routes: [
- {
- name: 'partyWork',
- path: '/PartyWork/partyWork',
- component: './PartyWork/partyWork',
- },
- ],
- },
- {
- name: 'SocialRespon',
- path: '/SocialRespon',
- icon: 'smile',
- routes: [
- {
- name: 'socialRespon',
- path: '/SocialRespon/socialRespon',
- component: './SocialRespon/socialRespon',
- },
- ],
- },
- {
- name: 'JoinZZ',
- path: '/JoinZZ',
- icon: 'smile',
- routes: [
- {
- name: 'vacancy',
- path: '/JoinZZ/vacancy',
- component: './JoinZZ/vacancy',
- },
- {
- name: 'biddingDocument',
- path: '/JoinZZ/biddingDocument',
- component: './JoinZZ/biddingDocument',
- },
- ],
- },
- {
- name: 'Other',
- path: '/Other',
- icon: 'smile',
- routes: [
- {
- name: 'seo',
- path: '/Other/seo',
- component: './Other/seo',
- },
- {
- name: 'footer',
- path: '/Other/footer',
- component: './Other/footer',
- },
- ],
- },
- {
- name: 'ContactUs',
- path: '/ContactUs',
- icon: 'smile',
- routes: [
- {
- name: 'LeadInfo',
- path: '/ContactUs/LeadInfo',
- component: './ContactUs/LeadInfo',
- },
- {
- name: 'Appoint',
- path: '/ContactUs/Appoint',
- component: './ContactUs/Appoint',
- },
- ],
- },
- {
- name: 'MapDot',
- path: '/MapDot',
- icon: 'smile',
- routes: [
- {
- name: 'MapDot',
- path: '/MapDot/MapDot',
- component: './MapDot/MapDot',
- },
- ],
- },
- {
- name: 'monitor',
- path: '/monitor',
- routes: [
- {
- name: '任务日志',
- path: '/monitor/job-log/index/:id',
- component: './Monitor/JobLog',
- },
- ],
- },
- {
- name: 'log',
- path: '/log',
- routes: [],
- },
- ];
|