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