king
2022-09-06 fa381753ef2a2b25b1c0722549ac17e333da79be
src/templates/zshare/verifycard/billcodeform/index.jsx
@@ -4,11 +4,9 @@
import { Form, Row, Col, Select, Button, InputNumber, Input, Tooltip } from 'antd'
import { QuestionCircleOutlined } from '@ant-design/icons'
import { formRule } from '@/utils/option.js'
import './index.scss'
class UniqueForm extends Component {
class BillCodeForm extends Component {
  static propTpyes = {
    dict: PropTypes.object,         // 字典项
    btn: PropTypes.object,          // 按钮信息
@@ -366,7 +364,7 @@
                  },
                  {
                    pattern: /^[a-zA-Z0-9]*$/ig,
                    message: formRule.input.letternummsg
                    message: '请输入数字、字母以及_'
                  }
                ]
              })(<Input placeholder="" autoComplete="off" />)}
@@ -378,4 +376,4 @@
  }
}
export default Form.create()(UniqueForm)
export default Form.create()(BillCodeForm)