index.wxml 719 B

123456789101112131415161718
  1. <!--components/w-radio/index.wxml-->
  2. <van-checkbox-group class="gender-section" value="{{ innerValue }}" bind:change="onCheckChange" direction="{{ direction }}">
  3. <van-checkbox
  4. wx:for="{{ innerOptions }}"
  5. wx:key="index"
  6. name="{{ item.value }}"
  7. data-value="{{ item.value }}"
  8. use-icon-slot
  9. custom-class="{{ direction === 'vertical' ? 'vertical-checkbox' : 'horizontal-checkbox'}} {{index === innerOptions.length -1 ? 'last-child' : ''}}"
  10. >
  11. {{ item.label }}
  12. <image
  13. class="icon-img"
  14. slot="icon"
  15. src="{{ item.isSelect ? 'https://oss.dayaedu.com/ktyq/1741145121534.png' : 'https://oss.dayaedu.com/ktyq/1741144749279.png' }}"
  16. />
  17. </van-checkbox>
  18. </van-checkbox-group>