diff --git a/src/views/ebiz/common/CalculatePremium.vue b/src/views/ebiz/common/CalculatePremium.vue index a876fb1cd..37c8bed3a 100644 --- a/src/views/ebiz/common/CalculatePremium.vue +++ b/src/views/ebiz/common/CalculatePremium.vue @@ -1608,6 +1608,18 @@ export default { let resultData if (localStorage.isFrom == 'proposal') { + let product = params.orderDTO.insuredDTOs[0].riskDTOLst.find(item => { + return item.productCode === 'GFRS_A0001' + }) + if (product) { + let trialProduct = this.trialList.find(item => { + return item.productCode === 'GFRS_A0001' + }) + if (trialProduct) { + product.amt = trialProduct.amt + } + } + console.dir(params) resultData = await saveProposal(params) } else { resultData = await saveOrUpdateOrderInfo(params)