diff --git a/src/views/ebiz/proposal/List.vue b/src/views/ebiz/proposal/List.vue
index 3ef44fc9e..b4080a4a8 100644
--- a/src/views/ebiz/proposal/List.vue
+++ b/src/views/ebiz/proposal/List.vue
@@ -261,9 +261,9 @@ export default {
},
//转投保
async toInsurance(item) {
- if (item.insuredDTOs[0].mainRisk.length == '2') {
- return Toast.fail('暂不支持组合产品转投保')
- }
+ // if (item.insuredDTOs[0].mainRisk.length == '2') {
+ // return Toast.fail('暂不支持组合产品转投保')
+ // }
let flag = item.insuredDTOs[0].riskDTOLst.some(v => {
return v.riskCode == 'GFRS_M0024'
})
diff --git a/src/views/ebiz/proposal/ProposalInfo.vue b/src/views/ebiz/proposal/ProposalInfo.vue
index c5f1afc04..cf8492438 100644
--- a/src/views/ebiz/proposal/ProposalInfo.vue
+++ b/src/views/ebiz/proposal/ProposalInfo.vue
@@ -44,7 +44,7 @@
-
+
产品计划
@@ -172,7 +172,7 @@
{{ moneyItem.contentLabel }}
- {{ moneyItem.value | numFormatNo}}{{ moneyItem.value | numFormatNo }}{{ moneyItem.content | productRateUnit }}
@@ -361,11 +361,11 @@ export default {
}
}
},
- numFormat(str){
- return str.replace(/\.00/,'')
+ numFormat(str) {
+ return str.replace(/\.00/, '')
},
- numFormatNo(str){
- return Number(str.replace(/,/g, '')).toFixed(0);
+ numFormatNo(str) {
+ return Number(str.replace(/,/g, '')).toFixed(0)
}
},
mounted() {
@@ -401,7 +401,7 @@ export default {
methods: {
initDutyColor(code) {
if (code) {
- return code.replace(new RegExp('', 'g'), '').replace(/\.00/,'')
+ return code.replace(new RegExp('', 'g'), '').replace(/\.00/, '')
} else {
return ''
}
@@ -635,9 +635,9 @@ export default {
async insure() {
let path = '/sale/insuredInfo?edit=1'
if (this.mainRiskCodes) {
- if (this.mainRiskCodes.length != 1) {
- return Toast.fail('暂不支持组合产品转投保')
- }
+ // if (this.mainRiskCodes.length != 1) {
+ // return Toast.fail('暂不支持组合产品转投保')
+ // }
if (this.mainRiskCodes[0] == 'GFRS_M0024') {
let specilFlag = '1'
path = `${path}&specilFlag=${specilFlag}`