|
|
@@ -2865,6 +2865,7 @@ export default {
|
|
|
premium: 0,
|
|
|
},
|
|
|
taikangaccidentalDrivingVo: {},
|
|
|
+ nowCostsId: undefined, // 现询
|
|
|
policyNumberForm: {
|
|
|
jqpolicyno: "",
|
|
|
sypolicyno: "",
|
|
|
@@ -5370,6 +5371,7 @@ export default {
|
|
|
},
|
|
|
inquiryNowListChange(data) {
|
|
|
if (data) {
|
|
|
+ this.nowCostsId = data // 现询id
|
|
|
this.isInquiryNowDisable = true
|
|
|
this.inquiryNowList.forEach((val) => {
|
|
|
if (val.id == data) {
|
|
|
@@ -5379,6 +5381,7 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
} else {
|
|
|
+ this.nowCostsId = undefined
|
|
|
this.isInquiryNowDisable = false
|
|
|
this.policyNumberForm.jqCostsProportion = ''
|
|
|
this.policyNumberForm.noCostsProportion = ''
|
|
|
@@ -6561,6 +6564,7 @@ export default {
|
|
|
...this.policyNumberForm,
|
|
|
agreementId: this.isLetter3agreementId,
|
|
|
stageFlag: type,
|
|
|
+ nowCostsId: this.nowCostsId
|
|
|
};
|
|
|
// debugger
|
|
|
this.$api.letter.saveSubOrder(params1).then((res) => {
|