diff --git a/src/apps/AppSuperMarket/AppSuperMarket.vue b/src/apps/AppSuperMarket/AppSuperMarket.vue
index 105cabd3..b3d64623 100644
--- a/src/apps/AppSuperMarket/AppSuperMarket.vue
+++ b/src/apps/AppSuperMarket/AppSuperMarket.vue
@@ -389,7 +389,7 @@ export default {
// width: 28px;;
height: 28px;
line-height: 28px;
- padding: 0 8px;
+ padding: 0 9px;
text-align: center;
color: #fff;
font-size: 10px;
diff --git a/src/project/shandong10086/AppPeopleList/DetailCard.vue b/src/project/shandong10086/AppPeopleList/DetailCard.vue
index baa69ea5..f6f6630e 100644
--- a/src/project/shandong10086/AppPeopleList/DetailCard.vue
+++ b/src/project/shandong10086/AppPeopleList/DetailCard.vue
@@ -7,8 +7,7 @@
- {{ resident.currentAreaName }}
- {{ resident.currentAddress }}
+ {{resident.currentAreaName}}{{resident.currentAddress || ''}}
@@ -40,7 +39,7 @@
身份证号:
- {{ item.idNumber.replace(/^(\w{6})\w{8}(.*)$/, '$1******$2') }}
+ {{ item.idNumber.replace(/^(\w{6})\w{8}(.*)$/, '$1********$2') }}
@@ -66,13 +65,14 @@ export default {
computed: {},
watch: {},
onLoad(o) {
- document.title = '居民档案'
this.id = o.id
this.$dict.load('householdRelation', 'fileStatus').then(() => {
this.getDetail()
})
},
- onShow() {},
+ onShow() {
+ document.title = '居民档案'
+ },
methods: {
getDetail() {
this.$http.post(`/app/appresident/detail?id=${this.id}`).then((res) => {
diff --git a/src/project/shandong10086/AppPeopleList/DetailPeople.vue b/src/project/shandong10086/AppPeopleList/DetailPeople.vue
index 8b699e38..53174053 100644
--- a/src/project/shandong10086/AppPeopleList/DetailPeople.vue
+++ b/src/project/shandong10086/AppPeopleList/DetailPeople.vue
@@ -32,7 +32,7 @@
身份证号
- {{ data.resident && data.resident.idNumber.replace(/^(\w{6})\w{8}(.*)$/, '$1****$2') }}
+ {{ data.resident && data.resident.idNumber.replace(/^(\w{6})\w{8}(.*)$/, '$1********$2') }}
diff --git a/src/project/shandong10086/AppPeopleList/PeopleList.vue b/src/project/shandong10086/AppPeopleList/PeopleList.vue
index 881c70e5..db4fb902 100644
--- a/src/project/shandong10086/AppPeopleList/PeopleList.vue
+++ b/src/project/shandong10086/AppPeopleList/PeopleList.vue
@@ -81,7 +81,7 @@ export default {
this.getList()
},
onShow() {
- document.title = '居民列表'
+ document.title = '查看居民档案'
},
methods: {
getList() {