import React, {Component} from 'react'
|
import PropTypes from 'prop-types'
|
import { Form, Row, Col, Input, Select, Icon, Radio, notification, Tooltip, InputNumber } from 'antd'
|
import { btnIcons, btnClasses, formRule } from '@/utils/option.js'
|
import Utils from '@/utils/utils.js'
|
import './index.scss'
|
|
const { TextArea } = Input
|
|
class MainSearch extends Component {
|
static propTpyes = {
|
dict: PropTypes.object, // 字典项
|
setting: PropTypes.object, // 页面设置
|
formlist: PropTypes.any, // 表单信息
|
card: PropTypes.any, // 按钮信息
|
tabs: PropTypes.array, // 所有标签页
|
inputSubmit: PropTypes.any // 回车提交事件
|
}
|
|
state = {
|
formlist: null, // 表单信息
|
openType: null, // 打开方式
|
interType: null, // 接口类型:内部、外部
|
funcType: null, // 功能类型
|
position: null, // 按钮位置
|
reqOptionSgl: [{
|
value: 'requiredSgl',
|
text: this.props.dict['header.form.requiredSgl']
|
}],
|
reqOptions: [{
|
value: 'notRequired',
|
text: this.props.dict['header.form.notRequired']
|
}, {
|
value: 'requiredSgl',
|
text: this.props.dict['header.form.requiredSgl']
|
}],
|
reqOptionsMutil: [{
|
value: 'notRequired',
|
text: this.props.dict['header.form.notRequired']
|
}, {
|
value: 'requiredSgl',
|
text: this.props.dict['header.form.requiredSgl']
|
}, {
|
value: 'required',
|
text: this.props.dict['header.form.required']
|
}, {
|
value: 'requiredOnce',
|
text: this.props.dict['header.form.requiredOnce']
|
}],
|
insertUpdateOptions: [{
|
value: '',
|
text: this.props.dict['header.form.empty']
|
}, {
|
value: 'insert',
|
text: this.props.dict['header.form.action.insert']
|
}, {
|
value: 'update',
|
text: this.props.dict['header.form.action.update']
|
}],
|
deleteOptions: [{
|
value: '',
|
text: this.props.dict['header.form.empty']
|
}, {
|
value: 'LogicDelete',
|
text: this.props.dict['header.form.action.LogicDelete']
|
}, {
|
value: 'delete',
|
text: this.props.dict['header.form.action.delete']
|
}, {
|
value: 'custom',
|
text: this.props.dict['header.form.custom']
|
}]
|
}
|
|
|
UNSAFE_componentWillMount () {
|
let _opentype = '' // 打开方式
|
let _intertype = '' // 接口类型
|
let _position = '' // 按钮位置
|
let _tabType = '' // 按钮为弹窗(标签)时,标签的类型
|
let _funcType = '' // 功能按钮类型
|
let _options = null // 选项列表
|
|
this.props.formlist.forEach(form => {
|
if (form.key === 'OpenType') {
|
if (this.props.card.execMode) { // 转换打印时打开方式
|
_opentype = 'funcbutton'
|
} else {
|
_opentype = form.initVal
|
}
|
} else if (form.key === 'intertype') {
|
_intertype = form.initVal
|
} else if (form.key === 'position') {
|
_position = form.initVal
|
} else if (form.key === 'tabType') {
|
_tabType = form.initVal
|
} else if (form.key === 'funcType') {
|
_funcType = form.initVal
|
}
|
})
|
|
let _tabs = this.props.tabs.filter(tab => tab.type === _tabType)
|
|
if (_opentype === 'innerpage') { // 新页面(内部),可选模板
|
_options = ['label', 'Ot', 'OpenType', 'pageTemplate', 'icon', 'class', 'position']
|
} else if (_opentype === 'outerpage') { // 新页面(外部),需要页面地址
|
_options = ['label', 'Ot', 'OpenType', 'url', 'icon', 'class', 'position']
|
} else if (_opentype === 'blank' || _opentype === 'tab') { // 新标签或当前页面替换
|
_options = ['label', 'Ot', 'OpenType', 'icon', 'class', 'position', 'tabTemplate']
|
} else if (_opentype === 'popview') { // 模态框标签页
|
_options = ['label', 'Ot', 'OpenType', 'icon', 'class', 'position', 'tabType', 'linkTab', 'popClose']
|
} else if (_opentype === 'excelOut') { // 导入导出
|
if (_intertype === 'outer') {
|
_options = ['label', 'OpenType', 'intertype', 'innerFunc', 'sysInterface', 'interface', 'outerFunc', 'icon', 'class', 'execSuccess', 'execError', 'pagination']
|
} else {
|
_options = ['label', 'OpenType', 'intertype', 'innerFunc', 'icon', 'class', 'execSuccess', 'execError', 'pagination']
|
}
|
} else if (_opentype === 'excelIn') { // 导入导出
|
if (_intertype === 'outer') {
|
_options = ['label', 'Ot', 'OpenType', 'intertype', 'innerFunc', 'sysInterface', 'interface', 'outerFunc', 'callbackFunc', 'icon', 'class', 'sheet', 'execSuccess', 'execError']
|
} else {
|
_options = ['label', 'Ot', 'OpenType', 'intertype', 'innerFunc', 'icon', 'class', 'sheet', 'execSuccess', 'execError']
|
}
|
} else if (_opentype === 'funcbutton') {
|
if (!_funcType) {
|
_options = ['label', 'OpenType', 'funcType', 'icon', 'class']
|
} else if (_funcType === 'changeuser') {
|
_options = ['label', 'OpenType', 'funcType', 'icon', 'class']
|
} else if (_funcType === 'print') {
|
if (_intertype === 'outer') {
|
_options = ['label', 'OpenType', 'funcType', 'execMode', 'intertype', 'innerFunc', 'sysInterface', 'interface', 'outerFunc', 'callbackFunc', 'Ot', 'icon', 'class', 'execSuccess', 'execError']
|
} else {
|
_options = ['label', 'OpenType', 'funcType', 'execMode', 'intertype', 'innerFunc', 'Ot', 'icon', 'class', 'execSuccess', 'execError']
|
}
|
}
|
} else {
|
if (_intertype === 'outer') {
|
_options = ['label', 'position', 'OpenType', 'intertype', 'innerFunc', 'sysInterface', 'interface', 'outerFunc', 'callbackFunc', 'Ot', 'icon', 'class', 'execSuccess', 'execError']
|
} else {
|
_options = ['label', 'position', 'OpenType', 'intertype', 'innerFunc', 'Ot', 'icon', 'class', 'execSuccess', 'execError', 'sql', 'sqlType']
|
}
|
}
|
this.setState({
|
openType: _opentype,
|
interType: _intertype,
|
position: _position,
|
funcType: _funcType,
|
formlist: this.props.formlist.map(item => {
|
if (item.key === 'class') {
|
item.options = btnClasses
|
} else if (item.key === 'icon') {
|
item.options = btnIcons
|
} else if (item.key === 'Ot') {
|
if (_opentype === 'innerpage' || _position === 'grid') {
|
item.options = this.state.reqOptionSgl
|
} else if (['outerpage', 'blank', 'tab', 'popview', 'excelIn'].includes(_opentype)) {
|
item.options = this.state.reqOptions
|
} else {
|
item.options = this.state.reqOptionsMutil
|
}
|
} else if (item.key === 'sqlType') {
|
if (['prompt', 'exec'].includes(_opentype)) {
|
item.options = this.state.deleteOptions
|
} else {
|
item.options = this.state.insertUpdateOptions
|
}
|
} else if (item.key === 'linkTab') {
|
item.options = [
|
{
|
value: '',
|
text: '新建'
|
},
|
..._tabs
|
]
|
} else if (item.key === 'OpenType') {
|
item.initVal = _opentype
|
}
|
|
item.hidden = !_options.includes(item.key)
|
return item
|
})
|
})
|
}
|
|
componentDidMount () {
|
const { card } = this.props
|
|
if (card.focus) {
|
try {
|
let _form = document.getElementById('label')
|
_form.select()
|
} catch {
|
console.warn('表单focus失败!')
|
}
|
}
|
}
|
|
/**
|
* @description 下拉切换
|
* 1、打开方式切换,重置可见表单和表单值
|
* 2、显示位置切换,重置选择行
|
* 3、切换标签类型,重置可选标签
|
*/
|
openTypeChange = (key, value) => {
|
if (key === 'OpenType') {
|
let _options = null
|
if (value === 'innerpage') {
|
_options = ['label', 'Ot', 'OpenType', 'pageTemplate', 'icon', 'class', 'position']
|
} else if (value === 'outerpage') {
|
_options = ['label', 'Ot', 'OpenType', 'url', 'icon', 'class', 'position']
|
} else if (value === 'blank' || value === 'tab') {
|
_options = ['label', 'Ot', 'OpenType', 'icon', 'class', 'position', 'tabTemplate']
|
} else if (value === 'popview') {
|
_options = ['label', 'Ot', 'OpenType', 'icon', 'class', 'position', 'tabType', 'linkTab', 'popClose']
|
} else if (value === 'excelOut') {
|
if (this.state.interType === 'outer') {
|
_options = ['label', 'OpenType', 'intertype', 'innerFunc', 'sysInterface', 'interface', 'outerFunc', 'icon', 'class', 'execSuccess', 'execError', 'pagination']
|
} else {
|
_options = ['label', 'OpenType', 'intertype', 'innerFunc', 'icon', 'class', 'execSuccess', 'execError', 'pagination']
|
}
|
} else if (value === 'excelIn') {
|
if (this.state.interType === 'outer') {
|
_options = ['label', 'Ot', 'OpenType', 'intertype', 'innerFunc', 'sysInterface', 'interface', 'outerFunc', 'callbackFunc', 'icon', 'class', 'sheet', 'execSuccess', 'execError']
|
} else {
|
_options = ['label', 'Ot', 'OpenType', 'intertype', 'innerFunc', 'icon', 'class', 'sheet', 'execSuccess', 'execError']
|
}
|
} else if (value === 'funcbutton') {
|
if (!this.state.funcType) {
|
_options = ['label', 'OpenType', 'funcType', 'icon', 'class']
|
} else if (this.state.funcType === 'changeuser') {
|
_options = ['label', 'OpenType', 'funcType', 'icon', 'class']
|
} else if (this.state.funcType === 'print') {
|
if (this.state.interType === 'outer') {
|
_options = ['label', 'OpenType', 'funcType', 'execMode', 'intertype', 'innerFunc', 'sysInterface', 'interface', 'outerFunc', 'callbackFunc', 'Ot', 'icon', 'class', 'execSuccess', 'execError']
|
} else {
|
_options = ['label', 'OpenType', 'funcType', 'execMode', 'intertype', 'innerFunc', 'Ot', 'icon', 'class', 'execSuccess', 'execError']
|
}
|
}
|
} else {
|
if (this.state.interType === 'inner') {
|
_options = ['label', 'position', 'OpenType', 'intertype', 'innerFunc', 'Ot', 'icon', 'class', 'execSuccess', 'execError', 'sql', 'sqlType']
|
} else {
|
_options = ['label', 'position', 'OpenType', 'intertype', 'innerFunc', 'Ot', 'icon', 'class', 'execSuccess', 'execError', 'sysInterface', 'interface', 'outerFunc', 'callbackFunc']
|
}
|
}
|
|
let _fieldval = {}
|
|
let _formlist = this.state.formlist.map(item => {
|
item.hidden = !_options.includes(item.key)
|
|
if (item.hidden) return item
|
|
if (item.key === 'intertype') {
|
_fieldval.intertype = this.state.interType
|
} else if (item.key === 'Ot') {
|
if (value === 'innerpage' || this.state.position === 'grid') {
|
item.options = this.state.reqOptionSgl
|
_fieldval.Ot = 'requiredSgl'
|
} else if (['outerpage', 'blank', 'tab', 'popview'].includes(value)) {
|
item.options = this.state.reqOptions
|
_fieldval.Ot = 'requiredSgl'
|
} else if (value === 'excelIn') {
|
item.options = this.state.reqOptions
|
_fieldval.Ot = 'notRequired'
|
} else {
|
item.options = this.state.reqOptionsMutil
|
}
|
} else if (item.key === 'sqlType') {
|
if (['prompt', 'exec'].includes(value)) {
|
item.options = this.state.deleteOptions
|
} else {
|
item.options = this.state.insertUpdateOptions
|
}
|
_fieldval.sqlType = ''
|
}
|
|
return item
|
})
|
|
this.setState({
|
openType: value,
|
formlist: _formlist
|
}, () => {
|
this.props.form.setFieldsValue(_fieldval)
|
})
|
} else if (key === 'position') {
|
let _fieldval = {}
|
|
this.setState({
|
position: value,
|
formlist: this.state.formlist.map(item => {
|
if (item.key === 'Ot') {
|
if (this.state.openType === 'innerpage' || value === 'grid') {
|
item.options = this.state.reqOptionSgl
|
_fieldval.Ot = 'requiredSgl'
|
} else if (['outerpage', 'blank', 'tab', 'popview'].includes(this.state.openType)) {
|
item.options = this.state.reqOptions
|
_fieldval.Ot = 'requiredSgl'
|
} else {
|
item.options = this.state.reqOptionsMutil
|
}
|
}
|
return item
|
})
|
}, () => {
|
this.props.form.setFieldsValue(_fieldval)
|
})
|
} else if (key === 'tabType') {
|
let _tabs = this.props.tabs.filter(tab => tab.type === value)
|
let _fieldval = {}
|
|
this.setState({
|
formlist: this.state.formlist.map(item => {
|
if (item.key === 'linkTab') {
|
item.options = [
|
{
|
value: '',
|
text: '新建'
|
},
|
..._tabs
|
]
|
}
|
return item
|
})
|
}, () => {
|
this.props.form.setFieldsValue(_fieldval)
|
})
|
} else if (key === 'funcType') {
|
let _options = null
|
if (!value) {
|
_options = ['label', 'OpenType', 'funcType', 'icon', 'class']
|
} else if (value === 'changeuser') {
|
_options = ['label', 'OpenType', 'funcType', 'icon', 'class']
|
} else if (value === 'print') {
|
if (this.state.interType === 'outer') {
|
_options = ['label', 'OpenType', 'funcType', 'execMode', 'intertype', 'innerFunc', 'sysInterface', 'interface', 'outerFunc', 'callbackFunc', 'Ot', 'icon', 'class', 'execSuccess', 'execError']
|
} else {
|
_options = ['label', 'OpenType', 'funcType', 'execMode', 'intertype', 'innerFunc', 'Ot', 'icon', 'class', 'execSuccess', 'execError']
|
}
|
}
|
|
this.setState({
|
formlist: this.state.formlist.map(item => {
|
item.hidden = !_options.includes(item.key)
|
|
if (item.hidden) return item
|
|
if (item.key === 'Ot' && value === 'print') {
|
item.options = this.state.reqOptionsMutil
|
}
|
|
return item
|
})
|
})
|
}
|
}
|
|
onChange = (e, key) => {
|
const { openType } = this.state
|
let value = e.target.value
|
if (key === 'intertype') {
|
let _options = null
|
if (openType === 'excelOut') {
|
if (value === 'outer') {
|
_options = ['label', 'OpenType', 'intertype', 'innerFunc', 'sysInterface', 'interface', 'outerFunc', 'icon', 'class', 'execSuccess', 'execError', 'pagination']
|
} else {
|
_options = ['label', 'OpenType', 'intertype', 'innerFunc', 'icon', 'class', 'execSuccess', 'execError', 'pagination']
|
}
|
} else if (openType === 'excelIn') {
|
if (value === 'outer') {
|
_options = ['label', 'Ot', 'OpenType', 'intertype', 'innerFunc', 'sysInterface', 'interface', 'outerFunc', 'callbackFunc', 'icon', 'class', 'sheet', 'execSuccess', 'execError']
|
} else {
|
_options = ['label', 'Ot', 'OpenType', 'intertype', 'innerFunc', 'icon', 'class', 'sheet', 'execSuccess', 'execError']
|
}
|
} else if (openType === 'funcbutton') {
|
if (value === 'outer') {
|
_options = ['label', 'OpenType', 'funcType', 'execMode', 'intertype', 'innerFunc', 'sysInterface', 'interface', 'outerFunc', 'callbackFunc', 'Ot', 'icon', 'class', 'execSuccess', 'execError']
|
} else {
|
_options = ['label', 'OpenType', 'funcType', 'execMode', 'intertype', 'innerFunc', 'Ot', 'icon', 'class', 'execSuccess', 'execError']
|
}
|
} else {
|
if (value === 'inner') {
|
_options = ['label', 'position', 'OpenType', 'intertype', 'innerFunc', 'Ot', 'icon', 'class', 'execSuccess', 'execError', 'sql', 'sqlType']
|
} else {
|
_options = ['label', 'position', 'OpenType', 'intertype', 'innerFunc', 'Ot', 'icon', 'class', 'execSuccess', 'execError', 'sysInterface', 'interface', 'outerFunc', 'callbackFunc']
|
}
|
}
|
|
this.setState({
|
interType: value,
|
formlist: this.state.formlist.map(item => {
|
item.hidden = !_options.includes(item.key)
|
|
if (item.key === 'interface') {
|
item.readonly = false
|
} else if (item.key === 'sysInterface') {
|
item.initVal = 'false'
|
}
|
return item
|
})
|
})
|
} else if (key === 'sysInterface') {
|
if (value === 'true') {
|
this.props.form.setFieldsValue({
|
interface: window.GLOB.mainSystemApi || ''
|
})
|
}
|
this.setState({
|
// interType: value,
|
formlist: this.state.formlist.map(item => {
|
if (item.key === 'interface' && value === 'true') {
|
item.readonly = true
|
} else if (item.key === 'interface') {
|
item.readonly = false
|
}
|
|
return item
|
})
|
})
|
}
|
}
|
|
handleSubmit = (e) => {
|
e.preventDefault()
|
|
if (this.props.inputSubmit) {
|
this.props.inputSubmit()
|
}
|
}
|
|
getFields() {
|
const { getFieldDecorator } = this.props.form
|
const fields = []
|
|
this.state.formlist.forEach((item, index) => {
|
if (item.hidden) return
|
|
if (item.type === 'text') { // 文本搜索
|
let _rules = []
|
if (item.key === 'innerFunc') {
|
let str = '^(' + item.fields.join('|') + ')'
|
let _patten = new RegExp(str + formRule.func.innerPattern + '$', 'g')
|
_rules = [{
|
pattern: _patten,
|
message: formRule.func.innerMessage
|
}, {
|
max: formRule.func.max,
|
message: formRule.func.maxMessage
|
}]
|
} else if (item.key === 'outerFunc' || item.key === 'callbackFunc') {
|
_rules = [{
|
pattern: formRule.func.pattern,
|
message: formRule.func.message
|
}, {
|
max: formRule.func.max,
|
message: formRule.func.maxMessage
|
}]
|
} else {
|
_rules = [{
|
max: formRule.input.max,
|
message: formRule.input.message
|
}]
|
}
|
fields.push(
|
<Col span={12} key={index}>
|
<Form.Item label={item.tooltip ?
|
<Tooltip placement="topLeft" overlayClassName={item.tooltipClass} title={item.tooltip}>
|
<Icon type="question-circle" />
|
{item.label}
|
</Tooltip> : item.label
|
}>
|
{getFieldDecorator(item.key, {
|
initialValue: item.initVal || '',
|
rules: [
|
{
|
required: item.readonly ? false : !!item.required,
|
message: this.props.dict['form.required.input'] + item.label + '!'
|
},
|
..._rules
|
]
|
})(<Input placeholder="" autoComplete="off" disabled={item.readonly} onPressEnter={this.handleSubmit} />)}
|
</Form.Item>
|
</Col>
|
)
|
} else if (item.type === 'number') {
|
fields.push(
|
<Col span={12} key={index}>
|
<Form.Item label={item.tooltip ?
|
<Tooltip placement="topLeft" overlayClassName={item.tooltipClass} title={item.tooltip}>
|
<Icon type="question-circle" />
|
{item.label}
|
</Tooltip> : item.label
|
}>
|
{getFieldDecorator(item.key, {
|
initialValue: item.initVal,
|
rules: [
|
{
|
required: item.readonly ? false : !!item.required,
|
message: this.props.dict['form.required.input'] + item.label + '!'
|
}
|
]
|
})(<InputNumber min={0} max={10000} precision={0} />)}
|
</Form.Item>
|
</Col>
|
)
|
} else if (item.type === 'select') { // 下拉搜索
|
fields.push(
|
<Col span={12} key={index}>
|
<Form.Item label={item.tooltip ?
|
<Tooltip placement="topLeft" overlayClassName={item.tooltipClass} title={item.tooltip}>
|
<Icon type="question-circle" />
|
{item.label}
|
</Tooltip> : item.label
|
}>
|
{getFieldDecorator(item.key, {
|
initialValue: item.initVal || '',
|
rules: [
|
{
|
required: !!item.required,
|
message: this.props.dict['form.required.select'] + item.label + '!'
|
}
|
]
|
})(
|
<Select
|
showSearch
|
filterOption={(input, option) => option.props.children[2].toLowerCase().indexOf(input.toLowerCase()) >= 0}
|
onChange={(value) => {this.openTypeChange(item.key, value)}}
|
getPopupContainer={() => document.getElementById('winter')}
|
>
|
{item.options.map((option, index) =>
|
<Select.Option id={`${index}`} title={option.text} key={`${index}`} value={option.value}>
|
{item.key === 'icon' && option.value && <Icon type={option.value} />} {option.text}
|
</Select.Option>
|
)}
|
</Select>
|
)}
|
</Form.Item>
|
</Col>
|
)
|
} else if (item.type === 'radio') {
|
fields.push(
|
<Col span={12} key={index}>
|
<Form.Item label={item.label}>
|
{getFieldDecorator(item.key, {
|
initialValue: item.initVal,
|
rules: [
|
{
|
required: !!item.required,
|
message: this.props.dict['form.required.select'] + item.label + '!'
|
}
|
]
|
})(
|
<Radio.Group onChange={(e) => {this.onChange(e, item.key)}} disabled={item.readonly}>
|
{
|
item.options.map(option => {
|
return (
|
<Radio key={option.value} value={option.value}>{option.text}</Radio>
|
)
|
})
|
}
|
</Radio.Group>
|
)}
|
</Form.Item>
|
</Col>
|
)
|
} else if (item.type === 'textarea') {
|
fields.push(
|
<Col span={24} key={index}>
|
<Form.Item label={item.label} className="textarea">
|
{getFieldDecorator(item.key, {
|
initialValue: item.initVal
|
})(<TextArea rows={4} />)}
|
</Form.Item>
|
</Col>
|
)
|
}
|
})
|
return fields
|
}
|
|
handleConfirm = () => {
|
const { setting } = this.props
|
// 表单提交时检查输入值是否正确
|
return new Promise((resolve, reject) => {
|
this.props.form.validateFieldsAndScroll((err, values) => {
|
if (!err) {
|
values.uuid = this.props.card.uuid
|
values.verify = this.props.card.verify || null
|
|
if (values.OpenType === 'excelIn') {
|
values.position = 'toolbar'
|
} else if (values.OpenType === 'excelOut') {
|
if (values.intertype === 'inner' && !values.innerFunc) {
|
if ((setting.interType === 'inner' && setting.innerFunc) || setting.interType === 'outer') {
|
notification.warning({
|
top: 92,
|
message: '表格数据查询未使用数据源,导出Excel使用内部接口时,需自定义内部函数!',
|
duration: 5
|
})
|
return
|
}
|
}
|
|
values.position = 'toolbar'
|
values.Ot = 'notRequired'
|
} else if (values.OpenType === 'popview' && !values.linkTab) { // 没有关联标签(新建时),创建新标签Id
|
values.linkTab = Utils.getuuid()
|
} else if (values.OpenType === 'funcbutton') { // 转换打印时打开方式
|
values.position = 'toolbar'
|
if (values.funcType === 'print') {
|
values.OpenType = values.execMode
|
}
|
}
|
|
if (values.innerFunc === '' && values.sql === '') {
|
notification.warning({
|
top: 92,
|
message: this.props.dict['header.form.actionhelp.tablename'],
|
duration: 5
|
})
|
} else if (values.innerFunc === '' && values.sql !== '' && values.sqlType === '') {
|
notification.warning({
|
top: 92,
|
message: this.props.dict['header.form.actionhelp.sqlType'],
|
duration: 5
|
})
|
} else {
|
resolve(values)
|
}
|
} else {
|
reject(err)
|
}
|
})
|
})
|
}
|
|
render() {
|
const formItemLayout = {
|
labelCol: {
|
xs: { span: 24 },
|
sm: { span: 7 }
|
},
|
wrapperCol: {
|
xs: { span: 24 },
|
sm: { span: 17 }
|
}
|
}
|
return (
|
<Form {...formItemLayout} className="ant-advanced-search-form commontable-action-form" id="winter">
|
<Row gutter={24}>{this.getFields()}</Row>
|
</Form>
|
)
|
}
|
}
|
|
export default Form.create()(MainSearch)
|