fix:分配

This commit is contained in:
shijing 2024-09-05 13:45:22 +08:00
parent f93cfa8000
commit baaa9f9e2e
1 changed files with 3 additions and 3 deletions

View File

@ -126,9 +126,9 @@ export default {
getUsers() {
let that = this;
// that.$API.system.user.list.req({ belong_dept: that.dept, page: 0 }).then(res => {
that.$API.system.user.list.req({ page:1,page_size:60}).then(res => {
that.userList = res.results;
that.$API.system.user.list.req({ belong_dept: that.dept, page: 0 }).then(res => {
// that.$API.system.user.list.req({ page:1,page_size:60}).then(res => {
that.userList = res;
})
},