update:增加评估结果页面

This commit is contained in:
2021-09-14 16:12:16 +08:00
parent fd3731dbbc
commit 3b2143dbdb
3 changed files with 949 additions and 26 deletions

View File

@@ -1,44 +1,56 @@
import Vue from 'vue'
import Router from 'vue-router'
import Vue from "vue";
import Router from "vue-router";
Vue.use(Router)
Vue.use(Router);
export default new Router({
mode:'hash',
routes: [
{
path: '/index',
name: 'index',
component: () => import('../views')
mode: "hash",
routes: [{
path: "/index",
name: "index",
component: () =>
import ("../views")
},
{
path: '/',
name: 'index',
component: () => import('../views')
path: "/",
name: "index",
component: () =>
import ("../views")
},
// 选择项目页面
{
path: '/project-select',
name: 'projectSelect',
component: () => import('../views/project')
path: "/project-select",
name: "projectSelect",
component: () =>
import ("../views/project")
},
// 评估结果页面
{
path: '/report/compensate',
name: 'reportCompensate',
component: () => import('../views/report/compensate')
path: "/report/compensate",
name: "reportCompensate",
component: () =>
import ("../views/report/compensate")
},
// 协议结果页面
{
path: '/report/agreement',
name: 'reportAgreement',
component: () => import('../views/report/agreement')
path: "/report/agreement",
name: "reportAgreement",
component: () =>
import ("../views/report/agreement")
},
// 查看pdf页面
{
path: '/showPdf',
name: 'showPdf',
component: () => import('../views/pdf/pdf')
path: "/showPdf",
name: "showPdf",
component: () =>
import ("../views/pdf/pdf")
},
// 评估结果pdf
{
path: "/evaluteResult",
name: "evaluteResult",
component: () =>
import ("../views/pdf/evaluteResult")
}
]
})
});