zy-react-library/components/SelectTree/Department/Gwj/index.d.ts

25 lines
685 B
TypeScript
Raw Normal View History

import type { FC } from "react";
import type { BasicSelectTreeProps } from "../../Basic";
2025-11-04 08:39:32 +08:00
import { Params } from "../../../LeftTree/Department/Gwj";
/**
*
*/
2025-11-06 09:38:23 +08:00
export interface DepartmentSelectTreeProps extends Omit<BasicSelectTreeProps, "treeData"> {
/** 请求参数 */
2025-11-04 08:39:32 +08:00
params?: Params;
2025-11-06 09:38:23 +08:00
/** 占位符,默认"部门“ */
placeholder?: string;
/** 是否需要企业id默认 false */
isNeedCorpInfoId?: boolean;
/** 是否需要父级部门id默认 false */
isNeedParentId?: boolean;
}
/**
2025-11-06 09:38:23 +08:00
*
*/
declare const DepartmentSelectTree: FC<DepartmentSelectTreeProps>;
export default DepartmentSelectTree;