import { observer } from 'mobx-react'; import { WeaOrgTree, } from 'ecCom'; @observer export default class OrgTree extends React.Component { constructor(props) { super(props); this.tree = null; this.setRef = element => { this.tree = element; } } componentDidMount() { this.init() } componentDidUpdate(prevProps, prevState) { this.init() } init = () => { if (this.tree) this.tree.reset(() => this.tree.fetchData()); } render() { const { store } = this.props, { triggerRefresh, orgTreeProps, handleOrgTreeNodeClick, } = store; return (
) } }