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

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

parent 2aba55b4
...@@ -386,12 +386,13 @@ export default { ...@@ -386,12 +386,13 @@ export default {
}); });
}, },
// 获取部门列表 // 获取部门列表
async getDeptListData() { async getDeptListData(searchForm = {}) {
this.deptLoading = true; this.deptLoading = true;
let res = await getDeptList({ let res = await getDeptList({
siteId: this.siteId, siteId: this.siteId,
page: 1, page: 1,
size: -1, size: -1,
...searchForm
}); });
this.deptLoading = false; this.deptLoading = false;
let { code, data } = res.data; 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