Files
zsxt_nbzs_h5/FrontCode2/sunshine_levy/src/router/index.js
2021-09-13 13:57:33 +08:00

34 lines
703 B
JavaScript

import Vue from 'vue'
import Router from 'vue-router'
Vue.use(Router)
export default new Router({
mode:'hash',
routes: [
{
path: '/',
name: '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')
},
]
})