| | |
| | | |
| | | let labelwidth = setting.searchLwidth !== undefined ? setting.searchLwidth : 33.3 |
| | | let advanceType = setting.advanceType || 'modal' |
| | | let style = {} |
| | | if (setting.borderRadius) { |
| | | style.borderRadius = setting.borderRadius |
| | | } |
| | | |
| | | return ( |
| | | <div ref={drop} className="ant-row"> |
| | |
| | | <div className="ant-row ant-form-item" style={{lineHeight: '40px', height: '55px', marginBottom: 0}}> |
| | | <div className="ant-col ant-form-item-label" style={{width: labelwidth + '%'}}></div> |
| | | <div className="ant-col ant-form-item-control-wrapper" style={{whiteSpace: 'nowrap'}}> |
| | | <Button type="primary">搜索</Button> |
| | | <Button style={{ marginLeft: 8 }}>重置</Button> |
| | | <Button style={style} type="primary">搜索</Button> |
| | | <Button style={{ marginLeft: 8, ...style }}>重置</Button> |
| | | <div style={{position: 'absolute', top: 0, bottom: 0, left: 0, right: 0}}></div> |
| | | </div> |
| | | </div> |