diff --git a/src/assets/js/utils/data-dictionary.js b/src/assets/js/utils/data-dictionary.js index cafd22875..90a45de7f 100644 --- a/src/assets/js/utils/data-dictionary.js +++ b/src/assets/js/utils/data-dictionary.js @@ -2093,6 +2093,11 @@ export default { shortName: '医疗险', name: '国富人寿国富民惠医疗保险(2021版)', code: 'GFRS_M0042' + }, + { + shortName: '医疗险', + name: '国富人寿民惠百万医疗保险(2021版)', + code: 'GFRS_M0043' } ], // 职级 diff --git a/src/config/index.js b/src/config/index.js index 71f54e8f0..3c2482e86 100644 --- a/src/config/index.js +++ b/src/config/index.js @@ -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' diff --git a/src/views/ebiz/common/CalculatePremium.vue b/src/views/ebiz/common/CalculatePremium.vue index b9f272763..560454151 100644 --- a/src/views/ebiz/common/CalculatePremium.vue +++ b/src/views/ebiz/common/CalculatePremium.vue @@ -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)