mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-16 04:06:44 +08:00
【国富人寿】建议书选择产品页面编辑按钮跳转链接参数拼接字段名称修改以及保费试算页面接口请求入参字段名称添加逻辑判断
This commit is contained in:
@@ -692,12 +692,21 @@ export default {
|
|||||||
//构建提交数据、渲染险种
|
//构建提交数据、渲染险种
|
||||||
if(this.$route.query.insuanceId && this.isFrom == 'proposal'){
|
if(this.$route.query.insuanceId && this.isFrom == 'proposal'){
|
||||||
// 获取试算记录详情
|
// 获取试算记录详情
|
||||||
|
let serialNo = ''
|
||||||
|
if (this.$route.query.orderNo) {
|
||||||
|
serialNo = this.$route.query.orderNo
|
||||||
|
}
|
||||||
|
if (this.$route.query.proposalOrderNo) {
|
||||||
|
serialNo = this.$route.query.proposalOrderNo
|
||||||
|
}
|
||||||
await getTrialRecordInfo({
|
await getTrialRecordInfo({
|
||||||
serialNo:this.$CacheUtils.getLocItem('proposalNo'),
|
serialNo:serialNo,
|
||||||
mainRiskId:this.$route.query.insuanceId
|
mainRiskId:this.$route.query.insuanceId
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
if (res.result == '0') {
|
if (res.result == '0') {
|
||||||
this.chooseProducts = JSON.parse(res.content.trialJsonStr)
|
this.chooseProducts = JSON.parse(res.content.trialJsonStr)
|
||||||
|
} else {
|
||||||
|
this.$toast(res.resultMessage)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}else{
|
}else{
|
||||||
|
|||||||
Reference in New Issue
Block a user