diff --git a/src/views/ebiz/proposal/ProposalInfo.vue b/src/views/ebiz/proposal/ProposalInfo.vue index e7467606d..ff16dfc16 100644 --- a/src/views/ebiz/proposal/ProposalInfo.vue +++ b/src/views/ebiz/proposal/ProposalInfo.vue @@ -73,12 +73,21 @@
养老保险金开始领取年龄
养老保险金保证给付期
养老保险金领取方式
+
年领/月领养老保险金(元)
-
-
{{ riskItem.riskName }}
-
{{ riskItem.pensionAge}} 周岁
-
{{ riskItem.guaranteedYear}} 年
-
{{ riskItem.receivePensionWay == '0' ? '年领':'月领'}}
+
+
+
{{ riskItem.riskName }}
+
{{ riskItem.pensionAge}} 周岁
+
{{ riskItem.guaranteedYear}} 年
+
{{ riskItem.receivePensionWay == '0' ? '年领':'月领'}}
+
+ {{ yearPension }} +
+
+ {{ monthPension }} +
+
@@ -372,7 +381,9 @@ export default { mainRiskCodes: [], time: 5, proposalNo:'', - isPension: false //是否是养老年金 + isPension: false, //是否是养老年金 + monthPension: 0, //月领养老金额 + yearPension: 0,//年领养老金额 } }, filters: { @@ -667,6 +678,10 @@ export default { // todo责任显示处理 if(risk.riskCode == 'GFRS_M0053'){ this.isPension = true; + //计算养老金领取金额 + this.monthPension = Number(risk.amt*0.085).toFixed(2); //月领养老金额 + + this.yearPension = risk.amt;//年领养老金额 } }) })