This commit is contained in:
bb_pan 2025-07-17 20:49:24 +08:00
parent 99b23755ff
commit 2d9c89c66c
2 changed files with 4 additions and 4 deletions

View File

@ -440,8 +440,8 @@ export default {
}
getSltAgreementInfo(params).then((response) => {
this.tableList = response.rows
this.total = response.total
this.tableList = response.data.rows
this.total = response.data.total
this.loading = false
})
},

View File

@ -363,8 +363,8 @@ export default {
unitIds: this.unitIds
}
getSltAgreementInfo(params).then(response => {
this.tableList = response.rows
this.total = response.total
this.tableList = response.data.rows
this.total = response.data.total
this.loading = false
})
},