This commit is contained in:
jiawei
2023-02-22 14:35:07 +08:00
parent a4d2e5bf5a
commit 109b533292
2 changed files with 7 additions and 4 deletions

View File

@@ -263,6 +263,9 @@ export default {
orderType: 'proposalInsuredInfo',
orderDTO: { insuredDTOs: [{ insuredId: insuredId }] }
})
let updateAnswerType = resultData.orderDTO.riskEvaluationDTO.isShowEvaluationPoint =='1'?true:false
this.$store.commit('updateAnswerType', updateAnswerType )
console.log(updateAnswerType,'updateAnswerType');
} else {
this.$toast.loading({
duration: 0, // 持续展示 toast

View File

@@ -190,9 +190,9 @@ export default {
isShowEvaluationPoint:'0'//默认不跳转到风险测评
}
},
created() {
// this.$store.commit('updateAnswerType', false )
getOrderDetail({ orderNo: localStorage.orderNo }).then(res => {
async created() {
this.$store.commit('updateAnswerType', false )
let res= await getOrderDetail({ orderNo: localStorage.orderNo })
// getOrderDetail({ orderNo: `8186270000000036` }).then(res => {
if (res.result == 0) {
//投被保险人关系
@@ -270,7 +270,7 @@ export default {
} else {
this.$toast(res.resultMessage)
}
})
// })
// this.relationToAppnt = `1`
this.productCodes = JSON.parse(localStorage.chooseProductCodes)
this.isSpecificMedicalInsurance = this.productCodes && this.productCodes.includes('GFRS_M0045')