mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-11 23:46:44 +08:00
当投保人豁免险加两全(有长险附加险时),第二款责任不默认选中
This commit is contained in:
@@ -1473,7 +1473,7 @@ export default {
|
|||||||
this.chooseProducts.forEach((item, index) => {
|
this.chooseProducts.forEach((item, index) => {
|
||||||
if (item.productCode == 'GFRS_A0010' || item.productCode == 'GFRS_A0009') {
|
if (item.productCode == 'GFRS_A0010' || item.productCode == 'GFRS_A0009') {
|
||||||
//(投保人)国富人寿附加豁免保险费重大疾病保险(B款)
|
//(投保人)国富人寿附加豁免保险费重大疾病保险(B款)
|
||||||
// 投被不同人:投保人豁免险单独搭配主险时,投保人豁免险,豁免主险保费,当投保人豁免险加两全时,豁免主险保费加两全保费
|
// 投被不同人:投保人豁免险单独搭配主险时,投保人豁免险,豁免主险保费,当投保人豁免险加两全(有长险附加险时),豁免主险保费加两全保费
|
||||||
if (item.productCode == 'GFRS_A0009') {
|
if (item.productCode == 'GFRS_A0009') {
|
||||||
if (this.saleInsuredPersonInfo.relationToAppnt != 1) {
|
if (this.saleInsuredPersonInfo.relationToAppnt != 1) {
|
||||||
//不同人
|
//不同人
|
||||||
@@ -1484,16 +1484,22 @@ export default {
|
|||||||
showPrem = Number(that.trialList[0].showPrem)
|
showPrem = Number(that.trialList[0].showPrem)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
item.calFactorLst.map((item2) => {
|
||||||
|
if (item2.code == 'dutyGroup') {
|
||||||
|
item2.rules.map((item3) => {
|
||||||
|
item3.defaultDutyAmt = (showPrem / 10000).toFixed(6)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
} else if (item.productCode == 'GFRS_A0010') {
|
} else if (item.productCode == 'GFRS_A0010') {
|
||||||
//(被保险人)国富人寿附加豁免保险费重大疾病保险(B款)GFRS_A0010
|
//(被保险人)国富人寿附加豁免保险费重大疾病保险(B款)GFRS_A0010
|
||||||
//投被同人,不同人:被保人豁免险搭配两全时,可选责任为必选,豁免两全保费
|
//投被同人,不同人:被保人豁免险搭配两全(有长险附加险时)时,可选责任为必选,豁免两全保费
|
||||||
if (showPrem001) {
|
if (showPrem001) {
|
||||||
showPrem = Number(showPrem001)
|
showPrem = Number(showPrem001)
|
||||||
}else{
|
}else{
|
||||||
showPrem = Number(that.trialList[0].showPrem)
|
showPrem = Number(that.trialList[0].showPrem)
|
||||||
}
|
}
|
||||||
}
|
item.calFactorLst.map((item2) => {
|
||||||
item.calFactorLst.map((item2) => {
|
|
||||||
if (item2.code == 'dutyGroup') {
|
if (item2.code == 'dutyGroup') {
|
||||||
item2.rules.map((item3) => {
|
item2.rules.map((item3) => {
|
||||||
item3.defaultDutyAmt = (showPrem / 10000).toFixed(6)
|
item3.defaultDutyAmt = (showPrem / 10000).toFixed(6)
|
||||||
@@ -1502,6 +1508,7 @@ export default {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user