feat: 部门联调

This commit is contained in:
xuziqiang
2024-06-04 19:22:11 +08:00
parent bd89f7973d
commit 61218104d3
11 changed files with 237 additions and 170 deletions

View File

@@ -98,7 +98,7 @@ const options = ref([]);
const getUserPerList = (transform, params = {}) => {
return http.post(origanizemanage.queryUserPerList, { ...params }).then((res) => {
return res.data.map((item) => {
return res.data?.map((item) => {
item = { ...item, ...transform(item) };
return item;
});