king
2021-02-02 318642cd6837a38a4bf5dfe059bcbb6cafe3bca8
src/templates/sharecomponent/actioncomponent/actionform/index.jsx
@@ -644,11 +644,11 @@
                initialValue: item.initVal,
                rules: [
                  {
                    required: !!item.required,
                    required: item.readonly ? false : !!item.required,
                    message: this.props.dict['form.required.input'] + item.label + '!'
                  }
                ]
              })(<TextArea rows={2} />)}
              })(<TextArea rows={2} readOnly={item.readonly} />)}
            </Form.Item>
          </Col>
        )
@@ -731,7 +731,7 @@
      }
    }
    return (
      <Form {...formItemLayout} className="ant-advanced-search-form commontable-action-form" id="winter">
      <Form {...formItemLayout} className="normal-action-list-form" id="winter">
        <Row gutter={24}>{this.getFields()}</Row>
      </Form>
    )