26 lines
673 B
TypeScript
26 lines
673 B
TypeScript
import type { FC } from "react";
|
|
import type { BasicSelectTreeProps } from "../Basic";
|
|
|
|
interface Data {
|
|
dict_value: string;
|
|
dict_label: string;
|
|
childrenList: Data[];
|
|
}
|
|
|
|
/**
|
|
* 组件属性
|
|
*/
|
|
export interface IndustrySelectTreeProps extends Omit<BasicSelectTreeProps, "treeData" | "placeholder" | "nameKey" | "idKey" | "childrenKey" | "onGetNodePaths" | "onGetData"> {
|
|
/** 获取父级节点 */
|
|
onGetNodePaths?: (nodes: Data[]) => void;
|
|
/** 获取数据 */
|
|
onGetData?: (data: Data[], processedData: Data[]) => void;
|
|
}
|
|
|
|
/**
|
|
* 行业类型下拉树组件
|
|
*/
|
|
declare const IndustrySelectTree: FC<IndustrySelectTreeProps>;
|
|
|
|
export default IndustrySelectTree;
|