This commit is contained in:
menxipeng
2025-09-13 14:20:20 +08:00
parent a14edb27c1
commit 9e75f226b9
21 changed files with 121 additions and 80 deletions

View File

@@ -144,7 +144,7 @@ export default {
this.loading = true
allocatedUserList(this.queryParams).then(response => {
this.userList = response.rows
this.total = response.total
this.total = parseInt(response.total) || 0
this.loading = false
}
)

View File

@@ -350,7 +350,7 @@ export default {
this.loading = true
listRole(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
this.roleList = response.rows
this.total = response.total
this.total = parseInt(response.total) || 0
this.loading = false
}
)