Browse Source

居民信息变更记录前端调整

feature
duanliangtao 2 years ago
parent
commit
814027e33b
  1. 7
      src/views/components/resiInfo.vue

7
src/views/components/resiInfo.vue

@ -1461,8 +1461,7 @@ export default {
eduInfoDto: {},
tableHeader: [
{ columnName: "typeName", label: "变更类型", width: 80 },
{ columnName: "reason", label: "原因", width: 150 },
{ columnName: "createdTime", label: "变更时间", width: 150 },
{ columnName: "fieldName", label: "变更信息", width: 150 },
{ columnName: "beforeChangeName", label: "变更前", width: 200 },
{ columnName: "afterChangeName", label: "变更后", width: 200 },
{ columnName: "operatorName", label: "操作人", width: 80 },
@ -2050,10 +2049,10 @@ export default {
async getChangeRecordDetailById() {
try {
const { data } = await this.$http.post(
`/actual/base/residentChangeRecord/getChangeRecordDetailById/${this.resiId}`
`/actual/base/residentChangeRecord/getChangeRecordsById/${this.resiId}`
);
if (data.data == null) {
this.eduInfoDto = {};
this.tableData = {};
} else {
this.tableData = data.data;
}

Loading…
Cancel
Save