1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- import React, { PureComponent } from 'react';
- import PropTypes from 'prop-types';
- import SelectModal from '../../../components/SelectModal';
- import { Codes } from '../../../utils/config';
- export default class CampusSelectModal extends PureComponent {
- render() {
- const {
- modalVisible,
- onCancel,
- onOk,
- onSearch,
- ...fsTableOpts
- } = this.props;
- const modalProps = {
- title: '选择校区',
- maskClosable: false,
- visible: modalVisible,
- onCancel,
- onOk,
- };
- const searchProps = {
- searchField: 'name',
- searchKeyWord: '',
- searchSize: 'default',
- searchSelect: true,
- searchSelectOptions: [{
- value: 'name', name: '校区名称', mode: 'input',
- }, {
- value: 'code', name: '校区编号', mode: 'input',
- }],
- searchSelectProps: {
- defaultValue: 'name',
- },
- onSearch: (value) => {
- onSearch(value);
- },
- };
- const fsTableProps = {
- fsTableColumns: [{
- title: '校区编号',
- dataIndex: 'code',
- key: 'code',
- width: '30%',
- }, {
- title: '校区名称',
- dataIndex: 'name',
- key: 'name',
- width: '35%',
- }, {
- title: '渠道名称',
- dataIndex: 'merchantName',
- key: 'merchantName',
- width: '20%',
- }],
- ...fsTableOpts,
- };
- return (
- <SelectModal
- mode="single"
- {...searchProps}
- {...fsTableProps}
- {...modalProps}
- />
- );
- }
- }
|