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 ( ); } }