king
2020-01-07 45466976d272c7b406b0e3d8b8fba92f3eb20524
src/templates/tableshare/verifycard/uniqueform/index.jsx
@@ -40,8 +40,7 @@
        })
        this.props.form.setFieldsValue({
          field: [],
          errmsg: '',
          errorCode: 'E'
          errmsg: ''
        })
      }
    })
@@ -61,7 +60,7 @@
      }
    }
    return (
      <Form {...formItemLayout} className="custom-verify-form" id="verifycard1">
      <Form {...formItemLayout} className="verify-form" id="verifycard1">
        <Row gutter={24}>
          <Col span={10}>
            <Form.Item label={'字段名'}>
@@ -85,13 +84,13 @@
            </Form.Item>
          </Col>
          <Col span={6}>
            <Form.Item label={'报错信息'}>
            <Form.Item label={'提示信息'}>
              {getFieldDecorator('errmsg', {
                initialValue: '',
                rules: [
                  {
                    required: true,
                    message: this.props.dict['form.required.input'] + '报错信息!'
                    message: this.props.dict['form.required.input'] + '提示信息!'
                  }
                ]
              })(<Input placeholder="" autoComplete="off" />)}