123456789101112131415161718 |
- <!--components/w-radio/index.wxml-->
- <van-checkbox-group class="gender-section" value="{{ innerValue }}" bind:change="onCheckChange" direction="{{ direction }}">
- <van-checkbox
- wx:for="{{ innerOptions }}"
- wx:key="index"
- name="{{ item.value }}"
- data-value="{{ item.value }}"
- use-icon-slot
- custom-class="{{ direction === 'vertical' ? 'vertical-checkbox' : 'horizontal-checkbox'}} {{index === innerOptions.length -1 ? 'last-child' : ''}}"
- >
- {{ item.label }}
- <image
- class="icon-img"
- slot="icon"
- src="{{ item.isSelect ? 'https://oss.dayaedu.com/ktyq/1741145121534.png' : 'https://oss.dayaedu.com/ktyq/1741144749279.png' }}"
- />
- </van-checkbox>
- </van-checkbox-group>
|