mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-10 18:36:43 +08:00
优化建议书的保费计算
This commit is contained in:
@@ -835,6 +835,10 @@ export default {
|
|||||||
if (item.mainRiskCode == 'GFRS_M0083' || item.mainRiskCode == 'GFRS_M0098' || item.mainRiskCode == 'GFRS_M0085') {
|
if (item.mainRiskCode == 'GFRS_M0083' || item.mainRiskCode == 'GFRS_M0098' || item.mainRiskCode == 'GFRS_M0085') {
|
||||||
this.disabledShow = true
|
this.disabledShow = true
|
||||||
}
|
}
|
||||||
|
if(item.hasPredictTransferPrem == '1') {
|
||||||
|
this.disabledShow = false
|
||||||
|
}
|
||||||
|
|
||||||
if ((item.mainRiskCode == 'GFRS_M0083' || item.mainRiskCode == 'GFRS_M0098' || item.mainRiskCode == 'GFRS_M0085') && this.isFrom == 'proposal') {
|
if ((item.mainRiskCode == 'GFRS_M0083' || item.mainRiskCode == 'GFRS_M0098' || item.mainRiskCode == 'GFRS_M0085') && this.isFrom == 'proposal') {
|
||||||
item.calFactorLst.forEach((i) => {
|
item.calFactorLst.forEach((i) => {
|
||||||
if (i.code == 'inputPrem') {
|
if (i.code == 'inputPrem') {
|
||||||
@@ -2156,11 +2160,13 @@ export default {
|
|||||||
async getTrial() {
|
async getTrial() {
|
||||||
let that = this
|
let that = this
|
||||||
let productCode = ''
|
let productCode = ''
|
||||||
|
let hasPredictTransferPrem = ''
|
||||||
let thisproductInfo = JSON.parse(window.localStorage.getItem('chooseProducts'))
|
let thisproductInfo = JSON.parse(window.localStorage.getItem('chooseProducts'))
|
||||||
if (thisproductInfo && thisproductInfo.length != 0) {
|
if (thisproductInfo && thisproductInfo.length != 0) {
|
||||||
thisproductInfo.forEach((item) => {
|
thisproductInfo.forEach((item) => {
|
||||||
if (item.productCode == 'GFRS_M0083' || item.productCode == 'GFRS_M0098' || item.productCode == 'GFRS_M0085') {
|
if (item.productCode == 'GFRS_M0083' || item.productCode == 'GFRS_M0098' || item.productCode == 'GFRS_M0085') {
|
||||||
productCode = item.productCode
|
productCode = item.productCode
|
||||||
|
hasPredictTransferPrem = item.hasPredictTransferPrem
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -2189,6 +2195,9 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if(hasPredictTransferPrem == '1') {
|
||||||
|
this.disabledShow = false
|
||||||
|
}
|
||||||
this.nextStepFlag = true
|
this.nextStepFlag = true
|
||||||
this.$toast.clear()
|
this.$toast.clear()
|
||||||
this.$toast.loading({
|
this.$toast.loading({
|
||||||
|
|||||||
Reference in New Issue
Block a user