import React, {Component} from 'react'
|
import PropTypes from 'prop-types'
|
import { fromJS } from 'immutable'
|
import { Form, Row, Col, Input, Select, Icon, Radio, notification, Tooltip, InputNumber, Cascader } from 'antd'
|
import { btnIcons, btnClasses, formRule } from '@/utils/option.js'
|
|
import Utils from '@/utils/utils.js'
|
import './index.scss'
|
|
const { TextArea } = Input
|
const actionTypeOptions = {
|
pop: ['label', 'position', 'OpenType', 'intertype', 'Ot', 'icon', 'class', 'execSuccess', 'execError'],
|
prompt: ['label', 'position', 'OpenType', 'intertype', 'Ot', 'icon', 'class', 'execSuccess', 'execError'],
|
exec: ['label', 'position', 'OpenType', 'intertype', 'Ot', 'icon', 'class', 'execSuccess', 'execError'],
|
excelIn: ['label', 'Ot', 'OpenType', 'intertype', 'icon', 'class', 'sheet', 'execSuccess', 'execError'],
|
excelOut: ['label', 'OpenType', 'intertype', 'icon', 'class', 'execSuccess', 'execError', 'pagination', 'search'],
|
popview: ['label', 'Ot', 'OpenType', 'icon', 'class', 'position', 'tabType', 'linkTab', 'popClose', 'display', 'ratio', 'placement'],
|
tab: ['label', 'Ot', 'OpenType', 'tabTemplate', 'icon', 'class', 'position'],
|
innerpage: ['label', 'Ot', 'OpenType', 'pageTemplate', 'icon', 'class', 'position'],
|
funcbutton: ['label', 'OpenType', 'funcType', 'icon', 'class']
|
}
|
|
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, // 按钮位置
|
procMode: null, // 外部接口参数处理方式
|
pageTemplate: null,
|
Ot: null,
|
requireOptions: [{
|
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: 'insert',
|
text: this.props.dict['header.form.action.insert']
|
}, {
|
value: 'update',
|
text: this.props.dict['header.form.action.update']
|
}, {
|
value: 'audit',
|
text: this.props.dict['header.form.action.audit']
|
}],
|
deleteOptions: [{
|
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']
|
}],
|
interTypeOptions: [{
|
value: 'system',
|
text: this.props.dict['model.interface.system']
|
}, {
|
value: 'inner',
|
text: this.props.dict['model.interface.inner']
|
}, {
|
value: 'outer',
|
text: this.props.dict['model.interface.outer']
|
}, {
|
value: 'custom',
|
text: '自定义'
|
}]
|
}
|
|
|
UNSAFE_componentWillMount () {
|
const { card } = this.props
|
|
let _opentype = card.OpenType // 打开方式
|
// let _tabType = card.tabType || 'SubTable' // 按钮为弹窗(标签)时,标签的类型
|
let _intertype = card.intertype || 'system' // 接口类型
|
let _procMode = card.procMode || 'system' // 参数处理方式
|
let _funcType = card.funcType || '' // 功能按钮默认类型
|
let _tabTemplate = card.tabTemplate // 按钮为标签页时,标签类型:三级菜单或表单标签页
|
let _pageTemplate = card.pageTemplate // 新页面类型
|
let _Ot = card.Ot || 'requiredSgl'
|
|
if (_opentype === 'outerpage') {
|
card.pageTemplate = 'custom'
|
_opentype = 'innerpage'
|
}
|
|
let _tabs = this.props.tabs.filter(tab => tab.type === 'SubTable')
|
let _options = this.getOptions(_opentype, _intertype, _funcType, _pageTemplate, _tabTemplate, _procMode, _Ot)
|
|
this.setState({
|
Ot: _Ot,
|
openType: _opentype,
|
pageTemplate: _pageTemplate,
|
interType: _intertype,
|
procMode: _procMode,
|
position: card.position || 'toolbar',
|
funcType: _funcType,
|
formlist: this.props.formlist.map(item => {
|
if (item.key === 'class') {
|
item.options = btnClasses
|
} else if (item.key === 'innerFunc' && _procMode === 'inner') {
|
item.required = true
|
} else if (item.key === 'icon') {
|
item.options = btnIcons
|
} else if (item.key === 'intertype') {
|
let iscustom = ['pop', 'prompt', 'exec'].includes(_opentype)
|
item.options = this.state.interTypeOptions.filter(op => (iscustom || op.value !== 'custom'))
|
} else if (item.key === 'Ot') {
|
if (card.position === 'grid' || _pageTemplate === 'pay') { // 行级按钮、支付按钮,只能选单行
|
item.options = this.state.requireOptions.filter(op => ['requiredSgl'].includes(op.value))
|
} else if (_opentype === 'innerpage' && _pageTemplate === 'billprint') {
|
item.options = this.state.requireOptions.filter(op => ['notRequired', 'requiredSgl', 'required'].includes(op.value))
|
} else if (['innerpage', 'tab', 'popview', 'excelIn'].includes(_opentype)) {
|
item.options = this.state.requireOptions.filter(op => ['notRequired', 'requiredSgl'].includes(op.value))
|
} else if (card.sqlType === 'insert') {
|
item.options = this.state.requireOptions.filter(op => ['notRequired', 'requiredSgl', 'required'].includes(op.value))
|
} else {
|
item.options = this.state.requireOptions
|
}
|
} 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失败!')
|
}
|
}
|
}
|
|
getOptions = (_opentype, _intertype, _funcType, _pageTemplate, _tabTemplate, _procMode, _Ot) => {
|
let _options = fromJS(actionTypeOptions[_opentype]).toJS() // 选项列表
|
|
if (_opentype === 'innerpage') { // 新页面,可选模板(自定义时,可填入外部链接)
|
if (_pageTemplate === 'custom') {
|
_options.push('url', 'joint')
|
} else if (_pageTemplate === 'billprint') {
|
_options.push('printTemp')
|
}
|
} else if (_opentype === 'tab') { // 标签页
|
if (_tabTemplate === 'ThdMenu') {
|
_options.push('linkmenu')
|
}
|
} else if (_opentype === 'excelOut') { // 导入导出
|
if (_intertype === 'outer') {
|
_options.push('innerFunc', 'sysInterface', 'interface', 'proInterface', 'outerFunc')
|
} else if (_intertype === 'inner') {
|
_options.push('innerFunc')
|
}
|
} else if (_opentype === 'excelIn') { // 导入导出
|
if (_intertype === 'outer') {
|
_options.push('innerFunc', 'sysInterface', 'interface', 'proInterface', 'outerFunc', 'callbackFunc')
|
} else if (_intertype === 'inner') {
|
_options.push('innerFunc')
|
}
|
} else if (_opentype === 'funcbutton') {
|
if (_funcType === 'print') {
|
_options.push('execMode', 'intertype', 'Ot', 'execSuccess', 'execError')
|
if (_intertype === 'outer') {
|
_options.push('innerFunc', 'sysInterface', 'interface', 'proInterface', 'outerFunc', 'callbackFunc')
|
} else if (_intertype === 'inner') {
|
_options.push('innerFunc')
|
}
|
}
|
} else if (_opentype !== 'popview') { // 打开方式不是弹窗页面时
|
if (_intertype === 'custom') {
|
_options.push('procMode', 'interface', 'callbackType', 'cbTable', 'proInterface', 'method', 'cross')
|
if (_procMode === 'system') {
|
_options.push('sql', 'sqlType')
|
} else {
|
_options.push('innerFunc')
|
}
|
} else if (_intertype === 'outer') {
|
_options.push('innerFunc', 'sysInterface', 'interface', 'proInterface', 'outerFunc', 'callbackFunc')
|
} else if (_intertype === 'inner') {
|
_options.push('innerFunc')
|
} else {
|
_options.push('sql', 'sqlType')
|
}
|
}
|
|
if (_options.includes('execSuccess') || _options.includes('popClose')) {
|
_options.push('resetPageIndex')
|
}
|
|
if (_Ot !== 'notRequired' && _opentype !== 'excelOut') {
|
_options.push('controlField', 'controlVal')
|
}
|
|
return _options
|
}
|
|
/**
|
* @description 切换
|
*/
|
optionChange = (key, value) => {
|
const { openType, funcType, procMode, Ot } = this.state
|
const { card } = this.props
|
|
if (key === 'OpenType') {
|
let _options = this.getOptions(value, 'system', '', this.state.pageTemplate, card.tabTemplate, 'system', Ot)
|
let _fieldval = {}
|
let _formlist = this.state.formlist.map(item => {
|
item.hidden = !_options.includes(item.key)
|
|
if (item.key === 'intertype') {
|
let iscustom = ['pop', 'prompt', 'exec'].includes(value)
|
item.options = this.state.interTypeOptions.filter(op => (iscustom || op.value !== 'custom'))
|
}
|
|
if (item.hidden) return item
|
|
if (item.key === 'intertype') {
|
_fieldval.intertype = 'system'
|
} else if (item.key === 'Ot') {
|
if (this.state.position === 'grid' || this.state.pageTemplate === 'pay') {
|
item.options = this.state.requireOptions.filter(op => ['requiredSgl'].includes(op.value))
|
_fieldval.Ot = 'requiredSgl'
|
} else if (value === 'innerpage' && this.state.pageTemplate === 'billprint') {
|
item.options = this.state.requireOptions.filter(op => ['notRequired', 'requiredSgl', 'required'].includes(op.value))
|
_fieldval.Ot = 'requiredSgl'
|
} else if (['innerpage', 'tab', 'popview'].includes(value)) {
|
item.options = this.state.requireOptions.filter(op => ['notRequired', 'requiredSgl'].includes(op.value))
|
_fieldval.Ot = 'requiredSgl'
|
} else if (value === 'excelIn') {
|
item.options = this.state.requireOptions.filter(op => ['notRequired', 'requiredSgl'].includes(op.value))
|
_fieldval.Ot = 'notRequired'
|
} else {
|
item.options = this.state.requireOptions
|
}
|
} 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,
|
funcType: '',
|
intertype: 'system',
|
procMode: 'system',
|
formlist: _formlist
|
}, () => {
|
if (value === 'excelIn') {
|
_fieldval.label = this.props.dict['model.form.excelIn']
|
_fieldval.class = 'border-dgreen'
|
} else if (value === 'excelOut') {
|
_fieldval.label = this.props.dict['model.form.excelOut']
|
_fieldval.class = 'dgreen'
|
}
|
|
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 (value === 'grid' || this.state.pageTemplate === 'pay') {
|
item.options = this.state.requireOptions.filter(op => ['requiredSgl'].includes(op.value))
|
_fieldval.Ot = 'requiredSgl'
|
} else if (openType === 'innerpage' && this.state.pageTemplate === 'billprint') {
|
item.options = this.state.requireOptions.filter(op => ['notRequired', 'requiredSgl', 'required'].includes(op.value))
|
_fieldval.Ot = 'requiredSgl'
|
} else if (['innerpage', 'tab', 'popview'].includes(openType)) {
|
item.options = this.state.requireOptions.filter(op => ['notRequired', 'requiredSgl'].includes(op.value))
|
_fieldval.Ot = 'requiredSgl'
|
} else {
|
item.options = this.state.requireOptions
|
}
|
}
|
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 = this.getOptions('funcbutton', this.state.interType, value, card.pageTemplate, card.tabTemplate, procMode, Ot)
|
let _fieldval = {}
|
|
this.setState({
|
funcType: value,
|
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' && value === 'print') {
|
item.options = this.state.requireOptions
|
}
|
|
return item
|
})
|
}, () => {
|
this.props.form.setFieldsValue(_fieldval)
|
})
|
} else if (key === 'sqlType') {
|
let _fieldval = {}
|
this.setState({
|
formlist: this.state.formlist.map(item => {
|
if (item.key === 'Ot' && value === 'insert') {
|
item.options = this.state.requireOptions.filter(op => ['notRequired', 'requiredSgl', 'required'].includes(op.value))
|
} else if (item.key === 'Ot') {
|
item.options = this.state.requireOptions
|
}
|
return item
|
})
|
}, () => {
|
if (value === 'insert') {
|
_fieldval.label = '添加'
|
_fieldval.class = 'green'
|
_fieldval.Ot = 'notRequired'
|
} else if (value === 'update') {
|
_fieldval.label = '修改'
|
_fieldval.class = 'purple'
|
_fieldval.Ot = 'requiredSgl'
|
} else if (value === 'audit') {
|
_fieldval.label = '审核'
|
_fieldval.class = 'primary'
|
_fieldval.Ot = 'requiredSgl'
|
} else if (value === 'LogicDelete' || value === 'delete') {
|
_fieldval.label = '删除'
|
_fieldval.class = 'danger'
|
_fieldval.Ot = 'required'
|
}
|
|
this.props.form.setFieldsValue(_fieldval)
|
})
|
} else if (key === 'pageTemplate') {
|
let _options = this.getOptions('innerpage', this.state.interType, this.state.funcType, value, card.tabTemplate, procMode, Ot)
|
let _fieldval = {}
|
|
this.setState({
|
pageTemplate: value,
|
formlist: this.state.formlist.map(item => {
|
item.hidden = !_options.includes(item.key)
|
|
if (item.key === 'Ot') {
|
if (value === 'pay') {
|
item.options = this.state.requireOptions.filter(op => ['requiredSgl'].includes(op.value))
|
_fieldval.Ot = 'requiredSgl'
|
} else if (value === 'billprint') {
|
item.options = this.state.requireOptions.filter(op => ['notRequired', 'requiredSgl', 'required'].includes(op.value))
|
_fieldval.Ot = 'requiredSgl'
|
} else {
|
item.options = this.state.requireOptions.filter(op => ['notRequired', 'requiredSgl'].includes(op.value))
|
}
|
}
|
|
return item
|
})
|
}, () => {
|
this.props.form.setFieldsValue(_fieldval)
|
})
|
} else if (key === 'tabTemplate') {
|
let _options = ['label', 'Ot', 'OpenType', 'icon', 'class', 'position', 'tabTemplate']
|
|
if (value === 'ThdMenu') {
|
_options.push('linkmenu')
|
}
|
|
this.setState({
|
openType: value,
|
formlist: this.state.formlist.map(item => {
|
item.hidden = !_options.includes(item.key)
|
|
return item
|
})
|
})
|
} else if (key === 'intertype') {
|
let _options = this.getOptions(openType, value, funcType, '', '', procMode, Ot)
|
|
this.setState({
|
interType: value,
|
formlist: this.state.formlist.map(item => {
|
item.hidden = !_options.includes(item.key)
|
|
if (item.key === 'innerFunc') {
|
item.required = value === 'inner'
|
} else if (item.key === 'interface') {
|
item.readonly = false
|
} else if (item.key === 'sysInterface') {
|
item.initVal = 'false'
|
} else if (item.key === 'Ot') {
|
item.options = this.state.requireOptions
|
}
|
return item
|
})
|
})
|
} else if (key === 'procMode') {
|
let _options = this.getOptions(openType, this.state.interType, funcType, '', '', value, Ot)
|
|
this.setState({
|
procMode: value,
|
formlist: this.state.formlist.map(item => {
|
item.hidden = !_options.includes(item.key)
|
|
if (item.key === 'innerFunc') {
|
item.required = true
|
}
|
return item
|
})
|
})
|
} else if (key === 'Ot') {
|
let _options = this.getOptions(openType, this.state.interType, funcType, this.state.pageTemplate, card.tabTemplate, procMode, value)
|
|
this.setState({
|
Ot: value,
|
formlist: this.state.formlist.map(item => {
|
item.hidden = !_options.includes(item.key)
|
return item
|
})
|
})
|
} else if (key === 'sysInterface') {
|
if (value === 'true') {
|
this.props.form.setFieldsValue({
|
interface: window.GLOB.mainSystemApi || ''
|
})
|
}
|
this.setState({
|
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.optionChange(item.key, value)}}
|
getPopupContainer={() => document.getElementById('winter')}
|
>
|
{item.options.map((option, index) =>
|
<Select.Option id={`${index}`} title={option.text} key={`${index}`} value={option.value || option.field}>
|
{item.key === 'icon' && option.value ? <Icon type={option.value} /> : null} {option.text || option.label}
|
</Select.Option>
|
)}
|
</Select>
|
)}
|
</Form.Item>
|
</Col>
|
)
|
} else if (item.type === 'radio') {
|
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 + '!'
|
}
|
]
|
})(
|
<Radio.Group onChange={(e) => {this.optionChange(item.key, e.target.value)}} 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,
|
rules: [
|
{
|
required: item.readonly ? false : !!item.required,
|
message: this.props.dict['form.required.input'] + item.label + '!'
|
}
|
]
|
})(<TextArea rows={2} readOnly={item.readonly} />)}
|
</Form.Item>
|
</Col>
|
)
|
} else if (item.type === 'cascader') { // 多选
|
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 + '!'
|
}
|
]
|
})(
|
<Cascader allowClear options={item.options || []} placeholder="" />
|
)}
|
</Form.Item>
|
</Col>
|
)
|
}
|
})
|
return fields
|
}
|
|
handleConfirm = () => {
|
const { setting, card } = this.props
|
// 表单提交时检查输入值是否正确
|
return new Promise((resolve, reject) => {
|
this.props.form.validateFieldsAndScroll((err, values) => {
|
if (!err) {
|
values.uuid = card.uuid
|
values.verify = card.verify || null
|
|
if (values.OpenType === 'excelIn') {
|
values.position = 'toolbar'
|
} else if (values.OpenType === 'excelOut') {
|
if (values.intertype === 'system' && setting.interType !== 'system') { // 导出excel需使用查询数据源
|
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'
|
} else if (['pop', 'prompt', 'exec'].includes(values.OpenType) && values.verify) {
|
if ((values.Ot === 'requiredOnce' || card.Ot === 'requiredOnce') && card.Ot !== values.Ot) {
|
values.verify.uniques = []
|
}
|
if (card.Ot !== values.Ot) {
|
if (values.Ot === 'notRequired') {
|
values.verify.invalid = 'false'
|
} else if (card.Ot === 'notRequired' && values.Ot !== 'notRequired') {
|
values.verify.invalid = 'true'
|
}
|
}
|
}
|
|
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="normal-action-list-form" id="winter">
|
<Row gutter={24}>{this.getFields()}</Row>
|
</Form>
|
)
|
}
|
}
|
|
export default Form.create()(MainSearch)
|