[FIX]nbs-智能分析结果查看

This commit is contained in:
yuweiqi
2020-03-02 14:11:55 +08:00
parent a172dbd37c
commit 158270393e
3 changed files with 4 additions and 4 deletions

View File

@@ -37,7 +37,7 @@ export default [
}
},
{
path: '/nbs/result/:id/:half/:nbsState',
path: '/nbs/result/:id/:half/:nbsState/:canClick',
name: 'nbsResult',
component: nbsResult,
meta: {

View File

@@ -57,7 +57,7 @@ export default {
routerInfo: {
type: 2,
index: -1,
path: `/nbs/result/${this.orderNo}/${this.half}/${this.nbsState}`
path: `/nbs/result/${this.orderNo}/${this.half}/${this.nbsState}/true`
}
})
}

View File

@@ -17,12 +17,12 @@ import { makePDF } from '@/api/ebiz/nbs'
export default {
created() {
window.appCallBack = this.appCallBack //app回调
this.canClick = true
this.canClick = this.$route.params.canClick || true
},
data() {
return {
isHalfActive: this.$route.params.half === '0',
canClick: true,
canClick: this.$route.params.canClick || true,
nbsState: this.$route.params.nbsState,
orderNo: this.$route.params.id,
half: this.$route.params.half