import { observer } from 'mobx-react'; import { WeaDialog, } from 'ecCom'; import Customization from './Customization'; import { Spin, Button, } from 'antd' @observer export default class SearchCustomDialog extends React.Component { constructor(props) { super(props); } render() { const { store } = this.props, { SEARCHDIALOG, searchDialog, search } = store; const buttons = [ , , ] return ( ); } }