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.
42 lines
1.9 KiB
42 lines
1.9 KiB
<!--subpages/heart/pages/groupBuyList/groupBuyList.wxml-->
|
|
<view class="group-buy-list">
|
|
<view class="my-publish" bindtap="toNoticeNewList">
|
|
<image src="../../images/my-groupbuy.png" />
|
|
</view>
|
|
<view class="guide" bindtap="toNoticeGuide">
|
|
<image src="../../images/guide.png" />
|
|
</view>
|
|
<view class="item-list">
|
|
<!-- <notice list="{{groupbuylist}}" type="{{1}}"></notice> -->
|
|
<view class="notice" wx:for="{{groupbuylist}}" wx:key="index" data-id="{{item.id}}" bindtap="toNoticeDetail">
|
|
<view class="notice-left" wx:if="{{item.groupBuyImg.length > 0}}">
|
|
<image src="{{item.groupBuyImg[0]}}" />
|
|
</view>
|
|
<view class="notice-right">
|
|
<view class="notice-title">{{item.pickupMethod == 1 ? '【包邮到家】' : item.pickupMethod == 2 ? '【社区送达】' : ''}}{{item.groupBuyTitle}}</view>
|
|
<view class="notice-bottom">
|
|
<view class="bottom-left">
|
|
<view class="notice-tag tag-5" wx:if="{{item.topFlag == '1'}}">置顶</view>
|
|
<view class="notice-tag tag-{{item.groupBuyStatus}}">{{item.groupBuyStatus == '0' ? '团购中' : item.groupBuyStatus == '4' ?'已截团' : item.groupBuyStatus == '5' ?'已结束' : '已取消'}}</view>
|
|
<view class="notice-time">{{item.groupBuyPublishTime}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<move-btn button-top="850"
|
|
button-left="560"
|
|
button-width="196"
|
|
button-height="196"
|
|
img-url="{{buttonInfo.imgUrl}}"
|
|
bindmovebtnCallBack="toPublish"></move-btn>
|
|
|
|
<coverview-dialog bind:confirm="confirmDialog" dialogVisible="{{dialogVisible}}" title="{{dialogTitle}}"
|
|
content="{{dialogContent}}" confirmText="{{dialogConfirmText}}" cancelText="{{dialogCancelText}}">
|
|
</coverview-dialog>
|
|
|
|
<load-more loadMoreType="{{loadMoreType}}" loadMoreVisible="{{loadMoreVisible}}"></load-more>
|
|
|
|
<no-data isShow="{{nodata}}"></no-data>
|
|
|