소스 검색

调整组织架构获取全部人员的数据

Lijy 2 년 전
부모
커밋
57ab644383
1개의 변경된 파일5개의 추가작업 그리고 9개의 파일을 삭제
  1. 5 9
      fhKeeper/formulahousekeeper/timesheet/src/views/team/index.vue

+ 5 - 9
fhKeeper/formulahousekeeper/timesheet/src/views/team/index.vue

@@ -1753,17 +1753,13 @@ export default {
     },
     getUsers() {
       this.http.post(
-        this.port.manage.list,
-        {
-          departmentId: -1,
-          pageIndex: 1,
-          // pageSize: 99999,
-          pageSize: -1,
-          keyword: this.keyword,
-        },
+        // this.port.manage.list,
+        '/user/getSimpleActiveUserList',
+        {},
         (res) => {
           if (res.code == "ok") {
-            this.users = res.data.records;
+            // this.users = res.data.records;
+            this.users = res.data;
           } else {
             this.$message({
               message: res.msg,