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.
38 lines
1.3 KiB
38 lines
1.3 KiB
5 years ago
|
<!--subpages/heart/pages/dropByList/dropByList.wxml-->
|
||
|
<view class="drop-by-list">
|
||
|
<view class="tab-all">
|
||
|
<view class="tab-bar">
|
||
|
<view class="tab tab0 {{selectedTab === 'tab0' ? 'select' : ''}}" data-tab="tab0" bindtap="tabBarChange">
|
||
|
需要捎
|
||
|
</view>
|
||
|
<view class="tab tab1 {{selectedTab === 'tab1' ? 'select' : ''}}" data-tab="tab1" bindtap="tabBarChange">
|
||
|
可以捎
|
||
|
</view>
|
||
|
<view class="select-bar {{selectedTab}}"></view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<view class="my-publish" bindtap="toNoticeNewList" wx:if="{{dropbylist.length > 0}}">
|
||
|
<image src="../../images/my-publish.png" />
|
||
|
</view>
|
||
|
<view class="item-list">
|
||
|
<notice list="{{dropbylist}}" type="{{0}}"></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>
|