|
|
@@ -731,8 +731,8 @@ export default { |
|
|
|
url: `/autoSR/zk/todo/list`, |
|
|
|
method: "get", |
|
|
|
params: { |
|
|
|
pageNum: this.pageNum, |
|
|
|
pageSize: this.pageSize, |
|
|
|
current: this.pageNum, |
|
|
|
size: this.pageSize, |
|
|
|
houseName: this.searchForm.houseName, |
|
|
|
updateUserName: this.searchForm.updateUserName, |
|
|
|
name: this.searchForm.name, |
|
|
@@ -743,8 +743,8 @@ export default { |
|
|
|
}).then((res) => { |
|
|
|
// console.log(res) |
|
|
|
if(res.code==0){ |
|
|
|
this.tableData = res.data.results || []; |
|
|
|
this.total = res.data.totalRecord; |
|
|
|
this.tableData = res.data.records || []; |
|
|
|
this.total = res.data.total; |
|
|
|
} else { |
|
|
|
this.tableData = []; |
|
|
|
} |
|
|
|