Blame view

src/RadioButton/RadioButton.html 401 Bytes
81f8a467   Imshann   调整组件前缀
1
  <label className={"ant-radio-button-wrapper" + (antdRadioGroup.state.value === value ? " ant-radio-button-wrapper-checked" : "")}>
3a3ecabe   Imshann   init
2
3
4
5
6
7
      <span className="ant-radio-button">
          <input type="radio" className="ant-radio-button-input" value={value} onClick={this.handleClick.bind(this, $event)}/>
          <span className="ant-radio-button-inner"></span>
      </span>
      <span>{children}</span>
  </label>