ykt-wxapp/api/corp/dept.js
2026-01-20 16:30:03 +08:00

14 lines
290 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import api from "../../utils/http.js";
const BASE_PATH = "/corp";
/**
* 获取科室列表(按 corpId
* @param {Object} params
* @param {string} params.corpId
*/
export function getDeptList(params = {}) {
return api.post(`${BASE_PATH}`, { type: "getDeptList", ...params });
}