Merge branch 'dev' of 112.124.100.131:GFRS/ebiz-h5 into dev

This commit is contained in:
proudlx
2021-04-25 17:38:18 +08:00
3 changed files with 10 additions and 3 deletions

View File

@@ -2093,6 +2093,11 @@ export default {
shortName: '医疗险',
name: '国富人寿国富民惠医疗保险(2021版)',
code: 'GFRS_M0042'
},
{
shortName: '医疗险',
name: '国富人寿民惠百万医疗保险2021版',
code: 'GFRS_M0043'
}
],
// 职级

View File

@@ -25,7 +25,7 @@ switch (process.env.VUE_APP_FLAG) {
assetsUrl = 'https://iagentsales-test2.e-guofu.com:443/app/'
// 上传影像地址 98 服务器地址
assetsUpUrl = 'https://iagentsales-test3.e-guofu.com:443'
mainUrl = 'https://iagentsales-test2.e-guofu.com'
mainUrl = 'http://139.199.50.151'
payUrl = 'https://funduat.e-guofu.com/s3-modules-gateway/embed/gateway.action'
zssqUrl = 'https://iagentsales-test2.e-guofu.com:5100/html/test/index.html#/'
REQ_PWD = '41424344454631323334353637383930'

View File

@@ -351,6 +351,7 @@ const dutyGFRS_A0008Rules = {
mainRisk: 'GFRS_M0005',
otmainRisk: 'GFRS_M0031',
mainRisk2: 'GFRS_M0042',
otmainRisk2: 'GFRS_M0043',
msg: '住院医疗提示金额只能是0.5、1、1.5、2',
msg_1: '附加到国富人寿国富民惠医疗保险2020版最高基本保额不超过1万元。',
msg_2: '住院医疗提示金额只能是0.5、1'
@@ -500,7 +501,7 @@ export default {
})
}
if (this.mainRiskCode == 'GFRS_M0031' || this.mainRiskCode == 'GFRS_M0005' ||
this.mainRiskCode == 'GFRS_M0042') {
this.mainRiskCode == 'GFRS_M0042' || this.mainRiskCode == 'GFRS_M0043') {
this.chooseProducts.map(item => {
if (item.productCode == 'GFRS_A0008') {
item.calFactorLst.map(item2 => {
@@ -965,7 +966,8 @@ export default {
if (
this.mainRiskCode === dutyGFRS_A0008Rules[currentEle.duty]['mainRisk'] ||
this.mainRiskCode === dutyGFRS_A0008Rules[currentEle.duty]['otmainRisk'] ||
this.mainRiskCode === dutyGFRS_A0008Rules[currentEle.duty]['mainRisk2']
this.mainRiskCode === dutyGFRS_A0008Rules[currentEle.duty]['mainRisk2'] ||
this.mainRiskCode === dutyGFRS_A0008Rules[currentEle.duty]['otmainRisk2']
) {
if (!(value == '0.5' || value == '1')) {
this.$toast(dutyGFRS_A0008Rules[currentEle.duty].msg_2)