import { post } from "./axios"; // 获取部门 export const getDepartmentTree = (parentId = "0") => post("/oa/department/getTree", { loading: false, parentId, }); // 获取数据字典 export const getDataDictionaries = (params) => post("/dictionaries/getLevels", { loading: false, ...params, });