33 lines
501 B
JavaScript
33 lines
501 B
JavaScript
import {
|
|
observer
|
|
} from 'mobx-react';
|
|
import {
|
|
WeaDialog,
|
|
} from 'ecCom';
|
|
import Customization from './Customization';
|
|
|
|
@observer
|
|
export default class SearchCustomDialog extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
store
|
|
} = this.props, {
|
|
SEARCHDIALOG,
|
|
searchDialog
|
|
} = store;
|
|
|
|
return (
|
|
<WeaDialog
|
|
{...SEARCHDIALOG}
|
|
{...searchDialog}
|
|
initLoadCss
|
|
>
|
|
<Customization store={store}/>
|
|
</WeaDialog>
|
|
);
|
|
}
|
|
} |