Commit f8e52689c06d5933ddab33c640b9facf72b2d099
1 parent
1fdba0f4
update lbp-from-radio-group
Showing
1 changed file
with
3 additions
and
3 deletions
front-end/h5/src/components/plugins/lbp-form-radio-group.js
| @@ -85,9 +85,9 @@ export default { | @@ -85,9 +85,9 @@ export default { | ||
| 85 | { | 85 | { |
| 86 | this.value_.map((item, index) => ( | 86 | this.value_.map((item, index) => ( |
| 87 | <div> | 87 | <div> |
| 88 | - <a-input value={item.value} onChange={e => { item.value = e.target.value }}></a-input> | ||
| 89 | - <a-button type="dashed" shape="circle" icon="plus" onClick={this.add} /> | ||
| 90 | - <a-button type="dashed" shape="circle" icon="minus" onClick={(item, index) => this.minus(item, index)} /> | 88 | + <a-input value={item.value} onChange={e => { item.value = e.target.value }} style={{ width: '70%' }}></a-input> |
| 89 | + <a-icon type="plus-circle" onClick={this.add} class="ml-2" /> | ||
| 90 | + <a-icon type="minus-circle" onClick={(item, index) => this.minus(item, index)} class="ml-1"></a-icon> | ||
| 91 | </div> | 91 | </div> |
| 92 | )) | 92 | )) |
| 93 | } | 93 | } |