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', orderType: 'proposalInsuredInfo',
orderDTO: { insuredDTOs: [{ insuredId: insuredId }] } orderDTO: { insuredDTOs: [{ insuredId: insuredId }] }
}) })
let updateAnswerType = resultData.orderDTO.riskEvaluationDTO.isShowEvaluationPoint =='1'?true:false
this.$store.commit('updateAnswerType', updateAnswerType )
console.log(updateAnswerType,'updateAnswerType');
} else { } else {
this.$toast.loading({ this.$toast.loading({
duration: 0, // 持续展示 toast duration: 0, // 持续展示 toast

View File

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