update;合并
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
import Vue from 'vue'
|
||||
import Router from 'vue-router'
|
||||
import index from '@/components/index'
|
||||
|
||||
Vue.use(Router)
|
||||
|
||||
@@ -9,7 +8,25 @@ export default new Router({
|
||||
{
|
||||
path: '/index',
|
||||
name: 'index',
|
||||
component: index
|
||||
}
|
||||
component: () => import('../views')
|
||||
},
|
||||
// 选择项目页面
|
||||
{
|
||||
path: '/project-select',
|
||||
name: 'projectSelect',
|
||||
component: () => import('../views/project')
|
||||
},
|
||||
// 评估结果页面
|
||||
{
|
||||
path: '/report/compensate',
|
||||
name: 'reportCompensate',
|
||||
component: () => import('../views/report/compensate')
|
||||
},
|
||||
// 协议结果页面
|
||||
{
|
||||
path: '/report/agreement',
|
||||
name: 'reportAgreement',
|
||||
component: () => import('../views/report/agreement')
|
||||
},
|
||||
]
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user