modal.js 2.1 KB

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