19 lines
485 B
TypeScript
19 lines
485 B
TypeScript
import type { FC } from "react";
|
|
import type { BasicSelectTreeProps } from "../../Basic";
|
|
import { Params } from "../../../LeftTree/Department/Gwj";
|
|
|
|
/**
|
|
* 组件属性
|
|
*/
|
|
export interface DepartmentSelectTreeProps extends Omit<BasicSelectTreeProps, "treeData" | "placeholder"> {
|
|
/** 请求参数 */
|
|
params?: Params;
|
|
}
|
|
|
|
/**
|
|
* 部门下拉树组件(港务局版本)
|
|
*/
|
|
declare const DepartmentSelectTree: FC<DepartmentSelectTreeProps>;
|
|
|
|
export default DepartmentSelectTree;
|