src/menu/components/form/normal-form/groupform/index.jsx
@@ -18,13 +18,22 @@ UNSAFE_componentWillMount () { const { group } = this.props const { appType } = this.state let fields = [] if (appType === 'mob') { group.fields.forEach(f => { if (f.field && ['text', 'number'].includes(f.type) && f.hidden !== 'true' && f.readonly !== 'true') { fields.push(f) } }) } else { group.fields.forEach(f => { if (f.field && ['select', 'link', 'text', 'number'].includes(f.type) && f.hidden !== 'true' && f.readonly !== 'true') { fields.push(f) } }) } this.setState({ fields: fields