1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- import Vue from 'vue'
- import Router from 'vue-router'
- const Main = () => import('@/views/main/index')
- const Strategy = () => import('@/views/strategy/index')
- const Appeal = () => import('@/views/appeal/index')
- const AppealDetail = () => import('@/views/appeal/appealDetail')
- const Audit = () => import('@/views/audit/index')
- const DoBusiness = () => import('@/views/doBusiness/index')
- const Evaluate = () => import('@/views/evaluate/index')
- const EvTwoLevelMenu = () => import('@/views/evaluate/evTwoLevelMenu')
- Vue.use(Router)
- export default new Router({
- mode: 'history',
- routes: [
- {
- path: '/',
- name: 'main',
- component: Main
- },
- {
- path: '/strategy',
- name: 'strategy',
- component: Strategy
- },
- {
- path: '/appeal',
- name: 'appeal',
- component: Appeal
- },
- {
- path: '/appeal/appealDetail',
- name: 'appealDetail',
- component: AppealDetail
- },
- {
- path: '/audit',
- name: 'audit',
- component: Audit
- },
- {
- path: '/doBusiness',
- name: 'doBusiness',
- component: DoBusiness
- },
- {
- path: '/evaluate',
- name: 'evaluate',
- component: Evaluate
- },
- {
- path: '/evaluate/evTwoLevelMenu',
- name: 'evTwoLevelMenu',
- component: EvTwoLevelMenu
- }
- ]
- })
|