This commit is contained in:
花有清香月有阴
2021-12-23 18:43:29 +08:00
parent 6f0ac11d5b
commit a82a2b6bc1

View File

@@ -12,7 +12,7 @@
</div>
<div class="bottom">
<div class="hints">家庭成员{{data.family.length}}</div>
<div class="hints">家庭成员{{ data.family.length }}</div>
<div v-if="data.family && data.family.length > 0">
<div class="card" v-for="(item, i) in data.family" :key="i" @click="toDetailPeople(item)">
@@ -25,6 +25,7 @@
<div class="rightTop">
<div class="rightTop-lefts">
<span class="names">{{ item.name }}</span>
<span class="fileStatuss" v-if="item.fileStatus == 1"> {{ $dict.getLabel('fileStatus', item.fileStatus) }}</span>
<span class="householdNames" v-if="item.householdRelation == 1">户主</span>
<span class="householdNames" v-else>
{{ $dict.getLabel('householdRelation', item.householdRelation) }}
@@ -65,7 +66,7 @@ export default {
watch: {},
onLoad(o) {
this.id = o.id
this.$dict.load('householdRelation').then(() => {
this.$dict.load('householdRelation', 'fileStatus').then(() => {
this.getDetail()
})
},
@@ -157,6 +158,17 @@ export default {
font-weight: 500;
color: #5aad6a;
}
.fileStatuss {
display: inline-block;
margin-left: 30px;
color: #ff4466;
background: #ffecef;
border-radius: 8px;
width: 88px;
height: 40px;
line-height: 40px;
text-align: center;
}
}
.rightTop-rights {
::v-deep .u-section {