diff --git a/src/views/ebiz/cardList/GroupCheckInfo.vue b/src/views/ebiz/cardList/GroupCheckInfo.vue index b88dea249..d432c5520 100644 --- a/src/views/ebiz/cardList/GroupCheckInfo.vue +++ b/src/views/ebiz/cardList/GroupCheckInfo.vue @@ -39,12 +39,16 @@ - 总保费: +
+ 折后总保费:{{ - orderInfoDTO.orderAmount }}元 + orderInfoDTO.orderAmount }}元
+ 总保费:{{ + orderInfoDTO.orderStandAmount }}
+ style='border-radius: 0em; width: 50%; height: 50px;margin:0px' />
diff --git a/src/views/ebiz/cardList/GroupInsuredList.vue b/src/views/ebiz/cardList/GroupInsuredList.vue index 9f51ce162..2e027edd4 100644 --- a/src/views/ebiz/cardList/GroupInsuredList.vue +++ b/src/views/ebiz/cardList/GroupInsuredList.vue @@ -383,6 +383,10 @@ export default { if(choose.relationToAppnt == '1'){ this.persons[0].check = false } + //删除配偶,恢复配偶可点击功能 + if(choose.relationToAppnt == '2'){ + this.persons[index].check = false + } this.cardOrderDetailFunc() // this.formatChoose(choose, index) } diff --git a/src/views/ebiz/cardList/cardDetail.vue b/src/views/ebiz/cardList/cardDetail.vue index 650eb9552..0a19d87c0 100644 --- a/src/views/ebiz/cardList/cardDetail.vue +++ b/src/views/ebiz/cardList/cardDetail.vue @@ -41,17 +41,13 @@
注:{{ productDate }}
- -
- 折后总保费:{{ - orderAmount }}
+ 总保费:{{ - orderStandAmount }}元 + orderAmount }}元 + style='border-radius: 0em; width: 50%; height: 40px' />
@@ -87,8 +83,7 @@ export default { bnfTypeVal: '法定受益人', //受益人类型文字展示 riskDTO: {}, productDate: '', - orderStandAmount:0, //原价 - orderAmount:0, //打折后价格 + orderAmount:0, isLessEighteen: true // 被保人手机号和邮箱默认展示 } }, @@ -135,7 +130,6 @@ export default { productDateTime = productDate.getFullYear() + '年' + insuYearM + '月' + insuYearD + '日' this.productDate = currentData + '0时至' + productDateTime + '24时止' this.orderAmount = this.orderDTO.orderInfoDTO.orderAmount - this.orderStandAmount = this.orderDTO.orderInfoDTO.orderStandAmount }, methods: { nextStep() { @@ -173,8 +167,4 @@ export default { text-align: center; } } - -.van-button{ - line-height: 20px; -}