| | |
| | | import React, {Component} from 'react' |
| | | import PropTypes from 'prop-types' |
| | | import { Form, Row, Col, Input, Select, InputNumber, Radio, Tooltip, Icon } from 'antd' |
| | | import { Form, Row, Col, Input, Select, InputNumber, Radio, Tooltip } from 'antd' |
| | | import { QuestionCircleOutlined } from '@ant-design/icons' |
| | | |
| | | import { formRule } from '@/utils/option.js' |
| | | import './index.scss' |
| | | // import './index.scss' |
| | | |
| | | class MainSearch extends Component { |
| | | static propTpyes = { |
| | |
| | | item.hidden = true |
| | | } else if (item.key === 'field' && card.elemType === 'avatar') { |
| | | item.options = columns.filter(option => option.type === card.type) |
| | | } else if (item.key === 'widthType' && card.elemType === 'avatar' && card.type === 'picture') { |
| | | item.hidden = false |
| | | } else if (item.key === 'size' && card.elemType === 'avatar' && card.type === 'icon') { |
| | | item.hidden = false |
| | | } else if (item.key === 'width' && card.elemType === 'avatar' && card.type === 'picture') { |
| | |
| | | } |
| | | |
| | | typeChange = (key, value) => { |
| | | const { card } = this.props |
| | | const { columns, oriformlist } = this.state |
| | | |
| | | if (key === 'datatype') { |
| | |
| | | formlist: oriformlist.map(item => { |
| | | if (item.key === 'field') { |
| | | item.options = columns.filter(option => option.type === value) |
| | | } else if (item.key === 'widthType') { |
| | | item.hidden = value !== 'picture' |
| | | } else if (item.key === 'width') { |
| | | item.hidden = value !== 'picture' |
| | | item.max = card.widthType === 'ratio' ? 100 : 500 |
| | | } else if (item.key === 'size') { |
| | | item.hidden = value !== 'icon' |
| | | } else if (item.key === 'radius') { |
| | |
| | | }, () => { |
| | | if (this.props.form.getFieldValue('field') !== undefined) { |
| | | this.props.form.setFieldsValue({field: ''}) |
| | | } |
| | | }) |
| | | } else if (key === 'widthType') { |
| | | this.setState({ |
| | | formlist: oriformlist.map(item => { |
| | | if (item.key === 'width') { |
| | | item.max = value === 'ratio' ? 100 : 500 |
| | | } |
| | | |
| | | return item |
| | | }) |
| | | }, () => { |
| | | if (this.props.form.getFieldValue('width') !== undefined) { |
| | | this.props.form.setFieldsValue({width: 32}) |
| | | } |
| | | }) |
| | | } |
| | |
| | | <Col span={12} key={index}> |
| | | <Form.Item label={item.tooltip ? |
| | | <Tooltip placement="topLeft" overlayClassName={item.tooltipClass} title={item.tooltip}> |
| | | <Icon type="question-circle" /> |
| | | <QuestionCircleOutlined className="mk-form-tip" /> |
| | | {item.label} |
| | | </Tooltip> : item.label |
| | | }> |
| | |
| | | <Col span={12} key={index}> |
| | | <Form.Item label={item.tooltip ? |
| | | <Tooltip placement="topLeft" overlayClassName={item.tooltipClass} title={item.tooltip}> |
| | | <Icon type="question-circle" /> |
| | | <QuestionCircleOutlined className="mk-form-tip" /> |
| | | {item.label} |
| | | </Tooltip> : item.label |
| | | }> |
| | |
| | | } |
| | | ] |
| | | })( |
| | | <Radio.Group disabled={item.readonly} onChange={(e) => {this.typeChange(item.key, e.target.value)}}> |
| | | <Radio.Group style={{whiteSpace: 'nowrap'}} disabled={item.readonly} onChange={(e) => {this.typeChange(item.key, e.target.value)}}> |
| | | { |
| | | item.options.map(option => { |
| | | return ( |
| | |
| | | values.icon = column.icon |
| | | values.color = column.color |
| | | |
| | | values.avatarWidth = values.size |
| | | } else if (values.widthType === 'absolute') { |
| | | values.avatarWidth = values.width |
| | | } else { |
| | | values.avatarWidth = values.width + '%' |
| | | values.width = values.size |
| | | } |
| | | } |
| | | |
| | |
| | | } |
| | | } |
| | | return ( |
| | | <Form {...formItemLayout} className="card-detail-edit-form" id="card-detail-edit-form"> |
| | | <Form {...formItemLayout} style={{minHeight: '190px'}} id="card-detail-edit-form"> |
| | | <Row gutter={24}>{this.getFields()}</Row> |
| | | </Form> |
| | | ) |