【FIX】部分功能修复及签字页面新增

This commit is contained in:
勾通
2025-10-13 19:40:03 +08:00
parent 9b9ea63735
commit bbcd5fa8b1
5 changed files with 159 additions and 103 deletions

View File

@@ -52,17 +52,7 @@ export default {
title: '评估结果'
},
})
if (localStorage.isFrom == 'sale') {
setTimeout(() => {
EWebBridge.webCallAppInJs('webview_left_button', {
img: this.$assetsUrl + 'images/del-close-btn@3x.png',
intercept: '1' //是否拦截原生返回事件 1是 其他否
})
}, 100)
}
window.appCallBack = this.appCallBack
document.body.style.backgroundColor = '#fff'
this.$route.query.assessResult && (this.assessResult = this.$route.query.assessResult)
getOrderDetail({ orderNo: this.$route.query.orderNo,userAssessLogic:true }).then(res => {
if (res.result == 0) {
this.assessResultDescList = res.orderDTO.orderInfoDTO.assessResultDescMap
@@ -131,19 +121,31 @@ export default {
//继续投保
onConfirm(){
let index = localStorage.getItem('evalateFrom') == 'toEvaluate' ? '-4' : '-3'
console.log('onConfirm')
this.$jump({
flag: 'goBack',
extra: {
refresh: '1',
index,
},
routerInfo: {
type: 2,
index,
path: '/common/selectedProduct'+'/?orderNo=' + this.$route.query.orderNo
}
})
if(!!this.$route.query.edit&&(this.$route.query.edit=='1')){
this.$jump({
flag: 'h5',
extra: {
url: location.origin + '/#' + '/common/selectedProduct?orderNo=' + this.$route.query.orderNo
},
routerInfo: {
path:'/common/selectedProduct?orderNo=' + this.$route.query.orderNo
}
})
}else{
this.$jump({
flag: 'goBack',
extra: {
refresh: '1',
index,
},
routerInfo: {
type: 2,
index,
path: '/common/selectedProduct'+'?orderNo=' + this.$route.query.orderNo
}
})
}
}
}
}