diff --git a/src/views/components/editResi.vue b/src/views/components/editResi.vue index 5ffb29baf..4bc746480 100644 --- a/src/views/components/editResi.vue +++ b/src/views/components/editResi.vue @@ -1,5 +1,5 @@ + + + + + + + + + @@ -368,6 +368,29 @@ export default { boxHeight: true, pageLoading: false, openSearch: false, + basicType: "name", + basicInfoList: [ + { + label: '姓名', + value: 'name' + }, + { + label: '联系电话', + value: 'mobile' + }, + { + label: '证件号', + value: 'idNum' + }, + { + label: '籍贯', + value: 'nativePlace' + }, + { + label: '备注', + value: 'remark' + } + ], optionsV: [], optionsB: [], optionsH: [], @@ -508,7 +531,7 @@ export default { partyFlag: '', updateTimeStart: '', updateTimeEnd: '', - specialCategoryCodes:[], + specialCategoryCodes: [], remark: '', villageId: '', buildId: '', @@ -1142,6 +1165,13 @@ export default { nowDay = '0' + nowDay } return subYear - 1 + '-' + nowMonth + '-' + nowDay + }, + handelClickBasicType(){ + this.form.name = ''; + this.form.mobile = ''; + this.form.idNum = ''; + this.form.nativePlace = ''; + this.form.remark = ''; } } } diff --git a/src/views/modules/base/resi.vue b/src/views/modules/base/resi.vue index 0a2ff28fc..1f28297c5 100644 --- a/src/views/modules/base/resi.vue +++ b/src/views/modules/base/resi.vue @@ -72,159 +72,32 @@ {{ scope.row.gender == null ? '--' : scope.row.gender == 1 ? '男' : scope.row.gender == 2 ? '女' : '--' }} -
- {{ - scope.row.birthday - ? scope.row.birthday.substr(0, 10) - : "" - }} +
+
-
- {{ - scope.row.idNum - ? `${scope.row.idNum.substr(0, 11)}` + - "******" + - `${scope.row.idNum.substr(16, 2)}` - : "--" - }} +
+
-
- {{ - scope.row.mobile - ? `${scope.row.mobile.substr(0, 3)}` + - "******" + - `${scope.row.mobile.substr(7, 4)}` - : "--" - }} +
+
-
-