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.
26 lines
964 B
26 lines
964 B
|
5 years ago
|
<!--subpages/heart/pages/groupBuyList/groupBuyList.wxml-->
|
||
|
|
<view class="group-buy-list">
|
||
|
|
<view class="my-publish" bindtap="toNoticeNewList" wx:if="{{groupbuylist.length > 0}}">
|
||
|
|
<image src="../../images/my-publish.png" />
|
||
|
|
</view>
|
||
|
|
<view class="item-list">
|
||
|
|
<notice list="{{groupbuylist}}" type="{{1}}"></notice>
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
|
||
|
|
<movable-area class="movable-area">
|
||
|
|
<movable-view class="movable-view" direction="all" inertia="true" friction="10">
|
||
|
|
<view class="img-box" bindtap="toPublish">
|
||
|
|
<image src="../../images/publish.png" />
|
||
|
|
</view>
|
||
|
|
</movable-view>
|
||
|
|
</movable-area>
|
||
|
|
|
||
|
|
<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>
|