28 lines
625 B
TypeScript
28 lines
625 B
TypeScript
import type { FC } from "react";
|
||
import type { BasicSelectTreeProps } from "../../Basic";
|
||
|
||
/**
|
||
* 请求参数
|
||
*/
|
||
export interface Params {
|
||
/** 企业id */
|
||
eqCorpinfoId?: string;
|
||
}
|
||
|
||
/**
|
||
* 组件属性
|
||
*/
|
||
export interface HiddenPartSelectTreeProps extends Omit<BasicSelectTreeProps, "treeData" | "nameKey" | "idKey" | "childrenKey"> {
|
||
/** 请求参数 */
|
||
params?: Params;
|
||
/** 是否需要企业id,默认 false */
|
||
isNeedCorpInfoId?: boolean;
|
||
}
|
||
|
||
/**
|
||
* 隐患部位下拉树组件(港务局版本)
|
||
*/
|
||
declare const HiddenPartSelectTree: FC<HiddenPartSelectTreeProps>;
|
||
|
||
export default HiddenPartSelectTree;
|