king
2021-05-20 5d48f8215284ca8de312f1c85f78e07215a0faf1
src/menu/components/form/normal-form/index.jsx
@@ -451,7 +451,7 @@
   * @description 表单编辑
   */
  handleForm = (_item) => {
    const { card, group } = this.state
    const { card, group, appType } = this.state
    let _form = fromJS(_item).toJS()
    let _inputfields = []
    let _tabfields = []
@@ -511,7 +511,7 @@
      _form.linkSubField = _form.linkSubField.filter(item => fields.includes(item))
    }
    if (!_form.span && standardform && standardform.span) {
    if (appType !== 'mob' && !_form.span && standardform && standardform.span) {
      _form.span = standardform.span
      _form.labelwidth = standardform.labelwidth
    }
@@ -669,7 +669,6 @@
            list={group.fields}
            setting={group.setting}
            showField={this.state.showField}
            placeholder={dict['header.form.modal.placeholder']}
            handleList={this.handleList}
            handleForm={this.handleForm}
            closeForm={this.closeForm}