You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
707 B
24 lines
707 B
<view>
|
|
<van-checkbox-group value="{{ result }}" bind:change="onChange">
|
|
<van-cell-group>
|
|
<van-cell
|
|
wx:for="{{ list }}"
|
|
wx:key="index"
|
|
title="{{ item.name }}"
|
|
value-class="value-class"
|
|
clickable
|
|
data-index="{{ index }}"
|
|
bind:click="toggle"
|
|
>
|
|
<van-checkbox
|
|
catch:tap="noop"
|
|
class="checkboxes-{{ index }}"
|
|
name="{{ item.name }}"
|
|
/>
|
|
</van-cell>
|
|
</van-cell-group>
|
|
</van-checkbox-group>
|
|
<view class="footer-btn">
|
|
<view class="footer-sbn" bindtap="save">确定</view>
|
|
</view>
|
|
</view> |