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

25 lines
688 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import type { FC } from "react";
import type { Params } from "../../../LeftTree/Department/Gwj";
import type { BasicSelectTreeProps } from "../../Basic";
/**
* 组件属性
*/
export interface DepartmentSelectTreeProps extends Omit<BasicSelectTreeProps, "treeData"> {
/** 请求参数 */
params?: Params;
/** 占位符,默认"部门" */
placeholder?: string;
/** 是否需要企业id默认 false */
isNeedCorpInfoId?: boolean;
/** 是否需要父级部门id默认 false */
isNeedParentId?: boolean;
}
/**
* 部门下拉树组件(港务局版本)
*/
declare const DepartmentSelectTree: FC<DepartmentSelectTreeProps>;
export default DepartmentSelectTree;