trunk/pc4mobx/organization/components/resource/SearchCustomDialog.js

33 lines
501 B
JavaScript
Raw Normal View History

2023-01-05 18:02:33 +08:00
import {
observer
} from 'mobx-react';
import {
WeaDialog,
} from 'ecCom';
2023-01-06 18:01:46 +08:00
import Customization from './Customization';
2023-01-05 18:02:33 +08:00
@observer
export default class SearchCustomDialog extends React.Component {
constructor(props) {
super(props);
}
render() {
const {
2023-01-06 18:01:46 +08:00
store
} = this.props, {
SEARCHDIALOG,
searchDialog
} = store;
2023-01-05 18:02:33 +08:00
return (
<WeaDialog
2023-01-06 18:01:46 +08:00
{...SEARCHDIALOG}
{...searchDialog}
initLoadCss
2023-01-05 18:02:33 +08:00
>
2023-01-06 18:01:46 +08:00
<Customization store={store}/>
2023-01-05 18:02:33 +08:00
</WeaDialog>
);
}
}