king
2024-04-28 2e5fe5427d6db393e0495598ff43d90a052f4791
src/templates/sharecomponent/actioncomponent/verifyexcelout/otherform/index.jsx
@@ -1,6 +1,6 @@
import React, {Component} from 'react'
import PropTypes from 'prop-types'
import { Form, Row, Col, Radio, Tooltip, Select } from 'antd'
import { Form, Row, Col, Radio, Tooltip, Select, Input } from 'antd'
import { QuestionCircleOutlined } from '@ant-design/icons'
// import './index.scss'
@@ -105,6 +105,24 @@
              )}
            </Form.Item>
          </Col> : null}
          <Col span={8}>
            <Form.Item label="前缀">
              {getFieldDecorator('prefix', {
                initialValue: line.prefix || ''
              })(
                <Input autoComplete="off" onChange={(e) => this.onChange('prefix', e.target.value)} onPressEnter={this.props.submit}/>
              )}
            </Form.Item>
          </Col>
          <Col span={8}>
            <Form.Item label="后缀">
              {getFieldDecorator('postfix', {
                initialValue: line.postfix || ''
              })(
                <Input autoComplete="off" onChange={(e) => this.onChange('postfix', e.target.value)} onPressEnter={this.props.submit}/>
              )}
            </Form.Item>
          </Col>
        </Row>
      </Form>
    )