| | |
| | | class="c-switch-radio-item" |
| | | @tap="evt => handleChange(true)" |
| | | > |
| | | <text |
| | | <view |
| | | class="c-switch-radio-icon" |
| | | :class="current === true ? 'checked' : ''" |
| | | > |
| | | <AtIcon value="check" /> |
| | | </text> |
| | | <text>{{checkedLabel}}</text> |
| | | </view> |
| | | <view class="c-switch-radio-label">{{checkedLabel}}</view> |
| | | </view> |
| | | <view |
| | | class="c-switch-radio-item" |
| | | @tap="evt => handleChange(false)" |
| | | > |
| | | <text |
| | | <view |
| | | class="c-switch-radio-icon" |
| | | :class="current === false ? 'checked' : ''" |
| | | > |
| | | <AtIcon value="check" /> |
| | | </text> |
| | | <text>{{uncheckedLabel}}</text> |
| | | </view> |
| | | <view class="c-switch-radio-label">{{uncheckedLabel}}</view> |
| | | </view> |
| | | </view> |
| | | </view> |