update;合并

This commit is contained in:
2021-09-10 15:10:05 +08:00
parent ae4a02fed6
commit 5089cde8bc
47 changed files with 748 additions and 224 deletions

View File

@@ -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')
},
]
})