28 lines
546 B
JavaScript
28 lines
546 B
JavaScript
|
|
import Industry from "../../../json/industry.json";
|
||
|
|
import BasicSelectTree from "../Basic";
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 行业类型下拉树组件
|
||
|
|
*/
|
||
|
|
function IndustrySelectTree(props) {
|
||
|
|
const {
|
||
|
|
placeholder = "行业类型",
|
||
|
|
...restProps
|
||
|
|
} = props;
|
||
|
|
|
||
|
|
return (
|
||
|
|
<BasicSelectTree
|
||
|
|
treeData={Industry}
|
||
|
|
placeholder={placeholder}
|
||
|
|
nameKey="dict_label"
|
||
|
|
idKey="dict_value"
|
||
|
|
childrenKey="childrenList"
|
||
|
|
{...restProps}
|
||
|
|
/>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
IndustrySelectTree.displayName = "IndustrySelectTree";
|
||
|
|
|
||
|
|
export default IndustrySelectTree;
|