|
@@ -63,7 +63,7 @@
|
|
|
<script>
|
|
|
import {
|
|
|
getDeptDropList,
|
|
|
- systemUserDropDateAuthList,
|
|
|
+ systemUserSelectByPage,
|
|
|
} from '@/api/commonality/permission'
|
|
|
export default {
|
|
|
name: "userList",
|
|
@@ -136,8 +136,8 @@
|
|
|
let obj = JSON.parse(JSON.stringify(this.queryParams));
|
|
|
obj.ids = this.addUserList[0]?this.addUserList+'':null;
|
|
|
obj.include = true;
|
|
|
- systemUserDropDateAuthList(obj).then(response => {
|
|
|
- this.$set(this,'dataList',response.data.records);
|
|
|
+ systemUserSelectByPage(obj).then(response => {
|
|
|
+ this.$set(this,'userList',response.data.records);
|
|
|
this.$set(this,'total',response.data.total);
|
|
|
this.$set(this,'loading',false);
|
|
|
});
|