zy-react-library/components/SelectTree/Area/index.js

28 lines
492 B
JavaScript
Raw Normal View History

import Area from "../../../json/area.json";
import BasicSelectTree from "../Basic";
/**
* 属地下拉树组件
*/
function AreaSelectTree(props) {
const {
placeholder = "属地",
...restProps
} = props;
return (
<BasicSelectTree
treeData={Area}
placeholder={placeholder}
nameKey="label"
idKey="value"
childrenKey="children"
{...restProps}
/>
);
}
AreaSelectTree.displayName = "AreaSelectTree";
export default AreaSelectTree;