king
2020-09-14 76427d51a079a5fd1f45bf7188249e7a4647ae05
src/templates/sharecomponent/actioncomponent/verifyexcelout/columnform/index.jsx
@@ -3,7 +3,7 @@
import { Form, Row, Col, Button, Input, InputNumber } from 'antd'
import './index.scss'
class UniqueForm extends Component {
class ExcelOutColumn extends Component {
  static propTpyes = {
    dict: PropTypes.object,         // 字典项
    columns: PropTypes.array,       // 列名集合
@@ -22,7 +22,7 @@
    this.props.form.setFieldsValue({
      Column: record.Column,
      Text: record.Text,
      Width: record.Width,
      Width: record.Width
    })
  }
@@ -40,7 +40,7 @@
        this.props.form.setFieldsValue({
          Column: '',
          Text: '',
          Width: 20,
          Width: 20
        })
      }
    })
@@ -113,4 +113,4 @@
  }
}
export default Form.create()(UniqueForm)
export default Form.create()(ExcelOutColumn)