diff --git a/src/apps/AppGridManagement/FamilyList.vue b/src/apps/AppGridManagement/FamilyList.vue index a2c7a896..cf4547b5 100644 --- a/src/apps/AppGridManagement/FamilyList.vue +++ b/src/apps/AppGridManagement/FamilyList.vue @@ -9,17 +9,19 @@ -
- - -
-
- {{item.name}} - {{item.phone}} +
+ + +
+
+
+ {{item.name}} + {{item.phone}} +
+
{{item.idNumber && item.idNumber.replace(/(.{6}).*(.{4})/,"$1********$2")}}
+
{{item.currentAreaName || ''}}{{ item.currentAddress || '' }}
-
{{item.idNumber && item.idNumber.replace(/(.{6}).*(.{4})/,"$1********$2")}}
-
{{item.currentAreaName || ''}}{{ item.currentAddress || '' }}
@@ -29,7 +31,6 @@
- @@ -67,7 +68,6 @@ export default { ids.push(item.gmrId) } }) - if(!ids.length) { return this.$u.toast('请选中需要删除的家庭户主') } @@ -121,7 +121,7 @@ export default { .main { padding-bottom: 112px; ul { - padding: 0px 32px; + padding-left: 32px; background-color: #fff; li { list-style-type: none; @@ -135,18 +135,20 @@ export default { width: 48px; height: 48px; } + .info { + display: flex; + justify-content: flex-start; + width: 100%; .userImg { - padding-right: 32px; + margin-right: 32px; width: 80px; height: 80px; } - .info { - border-bottom: 1px solid #E4E5E6; - width: 606px; - div { - margin: 2px 0; - } - .name { + .userInfo { + width: 100%; + padding-right: 32px; + border-bottom: 1px solid #E4E5E6; + .name { display: flex; justify-content: space-between; font-size: 32px; @@ -171,6 +173,8 @@ export default { font-size: 26px; color: #999999; } + } + } } }