import React, {Component} from 'react'; import {Select} from 'antd'; import {observer} from "mobx-react"; import { biz, bu } from '../../libs/ht'; const Business_unit = (props) => { const { store, mode, value, onChange, show_all, ...extProps } = props; const _show_all = ['tags', 'multiple'].includes(mode) ? false : show_all; return (
); }; /** * HT的事业部 */ export default observer(Business_unit);