feat: 用户身份信息可以选择是否隐藏

This commit is contained in:
hz
2025-10-28 11:41:48 +08:00
parent e660bb1de8
commit 26c47cd886

View File

@@ -1,7 +1,7 @@
<template> <template>
<div class="calculate-premium-container pt10 pb100 redRadioCheckbox"> <div class="calculate-premium-container pt10 pb100 redRadioCheckbox">
<!--用户信息详情--> <!--用户信息详情-->
<insured-message-info :insuredInfo="saleInsuredPersonInfo" /> <insured-message-info :insuredInfo="saleInsuredPersonInfo" v-if="showSaleInsuredPersionInfo"/>
<div v-for="(item, index) in chooseProducts" :key="index" class="ph10 bg-white"> <div v-for="(item, index) in chooseProducts" :key="index" class="ph10 bg-white">
<div class="flex justify-content-s align-items-c border-bottom pv10"> <div class="flex justify-content-s align-items-c border-bottom pv10">
@@ -470,7 +470,7 @@ export default {
} }
} }
}, },
components: { components:{
AddtionRiskList, AddtionRiskList,
[Tag.name]: Tag, [Tag.name]: Tag,
[Icon.name]: Icon, [Icon.name]: Icon,
@@ -491,6 +491,10 @@ export default {
productDTOS: { productDTOS: {
type: Array, type: Array,
default: () => [] default: () => []
},
showSaleInsuredPersionInfo:{
type: Boolean,
default: true
} }
}, },
data() { data() {