mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 18:59:36 +08:00
32 lines
1.5 KiB
Plaintext
32 lines
1.5 KiB
Plaintext
<view class="containerView public">
|
|
|
|
<!-- 音控组 -->
|
|
<view class="serviceView">
|
|
<view class="leftLineTitle">
|
|
<van-checkbox value="{{musicCheckAll}}" data-type="music" shape="square" bind:tap="checkMusicAll">音控组</van-checkbox>
|
|
</view>
|
|
<view class="serviceItemView">
|
|
<view class="serviceItem" wx:for="{{staffMusicList}}" wx:key="*this">
|
|
<van-checkbox value="{{ item.isSelect }}" data-id="{{item.id}}" data-type="music" shape="square" bind:tap="checkBoxClick"></van-checkbox>
|
|
<view class="name" data-id="{{item.id}}" data-type="music" bind:tap="checkBoxClick">{{item.name}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- 会务服务组 -->
|
|
<view class="serviceView">
|
|
<view class="leftLineTitle">
|
|
<van-checkbox value="{{serviceCheckAll}}" data-type="music" shape="square" bind:tap="checkServiceAll">会务服务组</van-checkbox>
|
|
</view>
|
|
<view class="serviceItemView">
|
|
<view class="serviceItem" wx:for="{{staffServeList}}" wx:key="*this">
|
|
<van-checkbox value="{{ item.isSelect }}" data-id="{{item.id}}" data-type="serve" shape="square" bind:tap="checkBoxClick"></van-checkbox>
|
|
<view class="name" data-id="{{item.id}}" data-type="serve" bind:tap="checkBoxClick">{{item.name}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="submitBtn" bind:tap="submit">确定</view>
|
|
|
|
<!-- 提示 -->
|
|
<van-notify id="van-notify" />
|
|
</view> |