效果图:
wxml
<view style="position:relative;top:100rpx;">
<!-- 全选按钮 一定要写在checkbox-group外面 否则会有bug-->
<view>
<checkbox bindtap="selectall" checked="{
{select_all}}"/>全选
</view>
<checkbox-group bindchange="selectChange">
<view class="content" wx:for="{
{list}}" wx:key='index'>
<checkbox value="{
{item.id}}" checked="{
{item.checked}}" />
{
{item.name}}
</view>
<button bindtap="send">确定</button>
</checkbox-group>
</view>
wxss
.content{
width: 600rpx;
height: 50rpx;
margin: 20rpx;
padding: 30rpx;
border:2px solid #000;
}
<