Commit 85630821 authored by “yiyousong”'s avatar “yiyousong”

fix: 修复部门列表无法搜索的问题

parent 2aba55b4
......@@ -386,12 +386,13 @@ export default {
});
},
// 获取部门列表
async getDeptListData() {
async getDeptListData(searchForm = {}) {
this.deptLoading = true;
let res = await getDeptList({
siteId: this.siteId,
page: 1,
size: -1,
...searchForm
});
this.deptLoading = false;
let { code, data } = res.data;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment