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.
39 lines
1.6 KiB
39 lines
1.6 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="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.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' ? '团购中' : '已结束'}}</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>
|
|
|