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.
34 lines
1.6 KiB
34 lines
1.6 KiB
<!--subpages/heart/pages/groupBuyConfirmList/groupBuyConfirmList.wxml-->
|
|
<view class="groupbuy-confirm-list">
|
|
<view class="top-title">
|
|
<view >微信名</view>
|
|
<view >联系电话</view>
|
|
<view >是否完成交易</view>
|
|
</view>
|
|
<view class="confirm-list">
|
|
<view class="confirm-item" wx:for="{{confirmlist}}" wx:key="index">
|
|
<view class="username">{{item.nickname}}</view>
|
|
<view class="userphone">{{item.mobile}}</view>
|
|
<view class="checkbox" data-id="{{item.id}}" data-status="{{item.signUpStatus}}" data-index="{{index}}" bindtap="changeCheckValue">
|
|
<image mode="aspectFill" src="../../images/{{item.signUpStatus == 0 ? 'checkbox' : 'checkbox-checked'}}.png" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="bottom-menu">
|
|
<view class="checkbox" bindtap="changeAllCheck">
|
|
<image mode="aspectFill" src="../../images/{{allChecked ? 'checkbox-checked' : 'checkbox'}}.png" />
|
|
<view class="check-text">{{allChecked ? '取消全选' : '全选'}}</view>
|
|
</view>
|
|
<view class="submit" bindtap="submitConfirm">
|
|
<image class="submit-bk" src="../../images/btnbk0.png" />
|
|
<view class="submit-text">提交</view>
|
|
</view>
|
|
</view>
|
|
|
|
<load-more loadMoreType="{{loadMoreType}}" loadMoreVisible="{{loadMoreVisible}}"></load-more>
|
|
|
|
<no-data isShow="{{nodata}}"></no-data>
|
|
|
|
<notice bind:close="closeDialog" bind:confirm="closeDialog" dialogVisible="{{dialogVisible}}" title="{{dialogTitle}}" content="" confirmText="知道了"></notice>
|
|
|