xiangpei
2025-02-13 c2d73d36f018bbbe2393357f32b548113b09d3ae
src/components/flow/User/SingleUser.vue
@@ -80,7 +80,7 @@
</template>
<script>
import { listUser, deptTreeSelect } from "@/api/system/user";
import {listUser, deptTreeSelect, deptTreeSelectNoAuth, listUserNoAuth} from "@/api/system/user";
import Treeselect from "@riophae/vue-treeselect";
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
import {StrUtil} from '@/utils/StrUtil'
@@ -172,7 +172,7 @@
    /** 查询用户列表 */
    getList() {
      this.loading = true;
      listUser(this.queryParams).then(response => {
      listUserNoAuth(this.queryParams).then(response => {
          this.userList = response.rows;
          this.total = response.total;
          this.loading = false;
@@ -181,7 +181,7 @@
    },
    /** 查询部门下拉树结构 */
    getDeptTree() {
      deptTreeSelect().then(response => {
      deptTreeSelectNoAuth().then(response => {
        this.deptOptions = response.data;
      });
    },