Commit f8e52689c06d5933ddab33c640b9facf72b2d099

Authored by ly525
1 parent 1fdba0f4

update lbp-from-radio-group

front-end/h5/src/components/plugins/lbp-form-radio-group.js
... ... @@ -85,9 +85,9 @@ export default {
85 85 {
86 86 this.value_.map((item, index) => (
87 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 91 </div>
92 92 ))
93 93 }
... ...