diff --git a/src/views/ebiz/proposal/ProposalInfo.vue b/src/views/ebiz/proposal/ProposalInfo.vue
index 976311bd3..4b4ade976 100644
--- a/src/views/ebiz/proposal/ProposalInfo.vue
+++ b/src/views/ebiz/proposal/ProposalInfo.vue
@@ -6,14 +6,18 @@
+
+
+ {{ pageShowInfo.showInsuredDTO.checkAge }}
+
+
+
+
+
@@ -402,6 +443,7 @@ import getAge from '@/assets/js/utils/age.js'
import dataDictionary from '@/assets/js/utils/data-dictionary'
import riskRules from '../common/risk-rules.js'
import { queryPersonal } from '@/api/ebiz/laurelClub/laurelClub'
+
export default {
data() {
let isWeixin = this.$utils.device().isWeixin //判断环境
@@ -527,12 +569,15 @@ export default {
this.isCheck = res.result
})
},
- created() {},
+ created() {
+ },
computed: {
- showDangerInfo : ()=>{
- return this.pageShowInfo.showInsuredDTO.riskDTOLst.some(e =>{
- e.riskName.include("分红型")
- })
+ showDangerInfo: () => {
+ if (this.pageShowInfo.showInsuredDTO.riskDTOLst) {
+ return this.pageShowInfo.showInsuredDTO.riskDTOLst.some(e => {
+ return e.riskName.include('分红型')
+ })
+ }
}
},
beforeRouteLeave(to, from, next) {
@@ -1153,36 +1198,45 @@ export default {