campus.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. import React, { PureComponent } from 'react';
  2. import PropTypes from 'prop-types';
  3. import SelectModal from '../../../components/SelectModal';
  4. import { Codes } from '../../../utils/config';
  5. export default class CampusSelectModal extends PureComponent {
  6. render() {
  7. const {
  8. modalVisible,
  9. onCancel,
  10. onOk,
  11. onSearch,
  12. ...fsTableOpts
  13. } = this.props;
  14. const modalProps = {
  15. title: '选择校区',
  16. maskClosable: false,
  17. visible: modalVisible,
  18. onCancel,
  19. onOk,
  20. };
  21. const searchProps = {
  22. searchField: 'name',
  23. searchKeyWord: '',
  24. searchSize: 'default',
  25. searchSelect: true,
  26. searchSelectOptions: [{
  27. value: 'name', name: '校区名称', mode: 'input',
  28. }, {
  29. value: 'code', name: '校区编号', mode: 'input',
  30. }],
  31. searchSelectProps: {
  32. defaultValue: 'name',
  33. },
  34. onSearch: (value) => {
  35. onSearch(value);
  36. },
  37. };
  38. const fsTableProps = {
  39. fsTableColumns: [{
  40. title: '校区编号',
  41. dataIndex: 'code',
  42. key: 'code',
  43. width: '30%',
  44. }, {
  45. title: '校区名称',
  46. dataIndex: 'name',
  47. key: 'name',
  48. width: '35%',
  49. }, {
  50. title: '渠道名称',
  51. dataIndex: 'merchantName',
  52. key: 'merchantName',
  53. width: '20%',
  54. }],
  55. ...fsTableOpts,
  56. };
  57. return (
  58. <SelectModal
  59. mode="single"
  60. {...searchProps}
  61. {...fsTableProps}
  62. {...modalProps}
  63. />
  64. );
  65. }
  66. }