From 5ab348a193bad0c2c299ead8c8006b373b9ae9f4 Mon Sep 17 00:00:00 2001 From: liuye Date: Wed, 9 Mar 2022 15:10:48 +0800 Subject: [PATCH] 28159 --- .../shandong10086/AppPeopleList/DetailCard.vue | 2 +- .../AppPeopleList/DetailPeople.vue | 17 +++++++++++++++-- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/src/project/shandong10086/AppPeopleList/DetailCard.vue b/src/project/shandong10086/AppPeopleList/DetailCard.vue index 308946e3..3c903fa7 100644 --- a/src/project/shandong10086/AppPeopleList/DetailCard.vue +++ b/src/project/shandong10086/AppPeopleList/DetailCard.vue @@ -25,7 +25,7 @@
{{ item.name }} - {{ $dict.getLabel('fileStatus', item.fileStatus) }} + 已注销 户主 {{ $dict.getLabel('householdRelation', item.householdRelation) }} diff --git a/src/project/shandong10086/AppPeopleList/DetailPeople.vue b/src/project/shandong10086/AppPeopleList/DetailPeople.vue index e8a5ac9a..085dce58 100644 --- a/src/project/shandong10086/AppPeopleList/DetailPeople.vue +++ b/src/project/shandong10086/AppPeopleList/DetailPeople.vue @@ -8,7 +8,7 @@
- {{ data.resident && data.resident.name }} + {{ data.resident && data.resident.name }} 已注销 户主 {{ $dict.getLabel('householdRelation', data.resident && data.resident.householdRelation) }} @@ -140,7 +140,7 @@ export default { onLoad(o) { this.id = o.id this.type = o.type - this.$dict.load('householdRelation', 'nation', 'education', 'maritalStatus', 'politicsStatus', 'militaryStatus', 'faithType', 'job').then(() => { + this.$dict.load('householdRelation', 'nation', 'education', 'maritalStatus', 'politicsStatus', 'militaryStatus', 'faithType', 'job', 'fileStatus').then(() => { this.getDetail() }) uni.$on('updatePeople', res => { @@ -207,6 +207,19 @@ export default { .rightTop { display: flex; justify-content: space-between; + .fileStatuss { + display: inline-block; + margin-left: 30px; + color: #ff4466; + background: #ffecef; + border-radius: 8px; + width: 120px; + height: 40px; + line-height: 40px; + text-align: center; + font-weight: 400; + font-size: 28px; + } .names { font-size: 32px; font-weight: 600;