dept.ts 195 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 import axios from "axios"; /** * 根据部门编号获取详细信息 * @param id 部门ID * @returns 结果 */ export function getDept(id: any) { return axios.get("/system/dept/" + id); }