| | |
| | | <div className="mob-shell" style={{width: window.GLOB.shellWidth, height: window.GLOB.shellHeight}}> |
| | | <div className="mob-shell-inner"> |
| | | <div className="am-navbar"> |
| | | <Icon type="close" /> |
| | | <Icon type="left" /> |
| | | <div className="am-navbar-title">{config.setting.title}</div> |
| | | {config.setting.btnPosition === 'top' ? <Button className="modal-submit-top">{config.setting.btnName || '确定'}</Button> : null} |
| | | </div> |
| | | <DragElement |
| | | list={config.fields} |
| | |
| | | handleForm={this.handleForm} |
| | | closeForm={this.closeForm} |
| | | /> |
| | | <div className="modal-btns"> |
| | | {config.setting.btnPosition !== 'top' ? <div className="modal-btns"> |
| | | <Button className="modal-reset" type="default">重置</Button> |
| | | <Button className="modal-submit" type="primary">{config.setting.btnName || '确定'}</Button> |
| | | </div> |
| | | </div> : null} |
| | | </div> |
| | | </div> |
| | | </div> |