您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1年前
123456789101112131415
  1. <view-flex styleCss="{{styleCss}}" justify="space-between" align="center">
  2. <view class="form-label">{{label}}</view>
  3. <view-flex class="form-value" justify="flex-end">
  4. <block wx:for="{{radioList}}" wx:key="index">
  5. <view-flex align="center" bind:tap="choose" data-id="{{item.id}}" data-idx="{{index}}">
  6. <wux-wing-blank>
  7. <view class="{{item.check == 1 ? 'active-check' : 'no-check'}}" style="width: 24rpx;height: 24rpx;"></view>
  8. </wux-wing-blank>
  9. <view style="color: {{item.check == 1 ? '#19be6b' : '#000000'}};">
  10. {{item.name}}
  11. </view>
  12. </view-flex>
  13. </block>
  14. </view-flex>
  15. </view-flex>