mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-10 20:56:45 +08:00
Merge branch 'feature/GFRS-1991【待确定】APP检测结果优化-整理' into dev
# Conflicts: # src/assets/js/business-common.js # src/config/index.js # src/views/ebiz/sale/AccountInformation.vue # src/views/ebiz/sale/AddBeneficiaryInfo.vue # src/views/ebiz/sale/InsuredPerson.vue
This commit is contained in:
@@ -419,12 +419,12 @@ export default {
|
||||
// 获取是否从建议书过来的
|
||||
this.isFrom = localStorage.isFrom
|
||||
//获取投保人信息
|
||||
if (localStorage.saleInsuredInfo) {
|
||||
this.saleInsuredInfo = JSON.parse(localStorage.saleInsuredInfo)
|
||||
if (this.$CacheUtils.getLocItem('saleInsuredInfo')) {
|
||||
this.saleInsuredInfo = JSON.parse(this.$CacheUtils.getLocItem('saleInsuredInfo'))
|
||||
}
|
||||
//获取被保险人信息
|
||||
if (localStorage.saleInsuredPersonInfo) {
|
||||
this.saleInsuredPersonInfo = JSON.parse(localStorage.saleInsuredPersonInfo)
|
||||
if (this.$CacheUtils.getLocItem('saleInsuredPersonInfo')) {
|
||||
this.saleInsuredPersonInfo = JSON.parse(this.$CacheUtils.getLocItem('saleInsuredPersonInfo'))
|
||||
}
|
||||
//构建提交数据、渲染险种
|
||||
this.chooseProducts = JSON.parse(localStorage.chooseProducts)
|
||||
@@ -1340,7 +1340,7 @@ export default {
|
||||
occupationName,
|
||||
platformType: 'app',
|
||||
productCode: item.productCode,
|
||||
medical: JSON.parse(localStorage.getItem('saleInsuredPersonInfo')).medical
|
||||
medical: JSON.parse(this.$CacheUtils.getLocItem('saleInsuredPersonInfo')).medical
|
||||
})
|
||||
params.trialInfos.push(trialInfo)
|
||||
})
|
||||
@@ -1674,7 +1674,7 @@ export default {
|
||||
//建议书
|
||||
if (localStorage.isFrom == 'proposal' && resultData.content.id) {
|
||||
this.saleInsuredPersonInfo.insuredId = resultData.content.id
|
||||
localStorage.saleInsuredPersonInfo = JSON.stringify(this.saleInsuredPersonInfo)
|
||||
this.$CacheUtils.setLocItem('saleInsuredPersonInfo',SON.stringify(this.saleInsuredPersonInfo))
|
||||
}
|
||||
this.$jump({
|
||||
flag: 'goBack',
|
||||
|
||||
Reference in New Issue
Block a user