mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-24 23:02:52 +08:00
[FIX]nbs-智能分析结果查看
This commit is contained in:
@@ -37,7 +37,7 @@ export default [
|
||||
}
|
||||
},
|
||||
{
|
||||
path: '/nbs/result/:id/:half/:nbsState',
|
||||
path: '/nbs/result/:id/:half/:nbsState/:canClick',
|
||||
name: 'nbsResult',
|
||||
component: nbsResult,
|
||||
meta: {
|
||||
|
||||
@@ -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`
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user