fenye
This commit is contained in:
@@ -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
|
||||
}
|
||||
)
|
||||
|
||||
@@ -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
|
||||
}
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user