2025-11-03 16:50:34 +08:00
|
|
|
|
import type { FC } from "react";
|
|
|
|
|
|
import type { BasicLeftTreeProps } from "../../Basic";
|
|
|
|
|
|
|
2025-11-06 09:38:23 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 请求参数
|
|
|
|
|
|
*/
|
2025-11-04 08:39:32 +08:00
|
|
|
|
export interface Params {
|
|
|
|
|
|
/** 企业id */
|
2025-11-04 09:21:21 +08:00
|
|
|
|
eqCorpinfoId?: string;
|
2025-11-04 08:39:32 +08:00
|
|
|
|
/** 父级部门id */
|
|
|
|
|
|
eqParentId?: string;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-11-03 16:50:34 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 组件属性
|
|
|
|
|
|
*/
|
|
|
|
|
|
export interface DepartmentLeftTreeProps extends Omit<BasicLeftTreeProps, "treeData"> {
|
|
|
|
|
|
/** 请求参数 */
|
2025-11-04 08:39:32 +08:00
|
|
|
|
params?: Params;
|
2025-11-03 16:50:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 部门左侧树组件(港务局版本)
|
|
|
|
|
|
*/
|
|
|
|
|
|
declare const DepartmentLeftTree: FC<DepartmentLeftTreeProps>;
|
|
|
|
|
|
|
|
|
|
|
|
export default DepartmentLeftTree;
|