modal.js 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. import React, { PureComponent } from 'react';
  2. import SelectModal from '../../../components/SelectModal';
  3. import styles from './modal.less';
  4. import { Codes, resourceType } from '../../../utils/config';
  5. export default class WareSelectSortModal extends PureComponent {
  6. render() {
  7. const { selTableData, modalVisible, rowKeyName, onCancel, onOk, onSearch, ...fsTableOpts } = this.props;
  8. const modalProps = {
  9. title: '选择课件',
  10. maskClosable: false,
  11. visible: modalVisible,
  12. onCancel,
  13. onOk,
  14. };
  15. const searchProps = {
  16. searchField: 'name',
  17. searchKeyWord: '',
  18. searchSize: 'default',
  19. searchSelect: true,
  20. searchSelectOptions: [{
  21. value: 'name', name: '课件名称', mode: 'input',
  22. },{
  23. value: 'code', name: '课件编号', mode: 'input',
  24. }],
  25. searchSelectProps: {
  26. defaultValue: 'code',
  27. },
  28. onSearch: (value) => onSearch(value),
  29. };
  30. const selTableProps = {
  31. operDel: true,
  32. operSort: true,
  33. tableClassName: styles.sTable,
  34. tablePagination: false,
  35. tableDataSource: selTableData,
  36. rowKeyName: rowKeyName,
  37. tableColumns: [{
  38. title: '课件编号',
  39. dataIndex: 'code',
  40. key: 'code',
  41. },{
  42. title: '课件名称',
  43. dataIndex: 'name',
  44. key: 'name',
  45. }],
  46. };
  47. //待选资源Table属性
  48. const fsTableProps = {
  49. fsTableClassName: styles.fsTable,
  50. fsTableColumns: [{
  51. title: '课件编号',
  52. dataIndex: 'code',
  53. key: 'code',
  54. },{
  55. title: '课件名称',
  56. dataIndex: 'name',
  57. key: 'name',
  58. }],
  59. ...fsTableOpts,
  60. }
  61. return (
  62. <SelectModal
  63. mode="multiple"
  64. { ...searchProps }
  65. { ...modalProps }
  66. { ...selTableProps }
  67. { ...fsTableProps }
  68. />
  69. );
  70. }
  71. }