| 1234567891011121314151617 |
- <view class="order">
- <view class="top-box">
- <van-tabs ellipsis="{{false}}" sticky color="#1677FF" active="{{ active }}" bind:change="onChange">
- <van-tab wx:for="{{tabList}}" wx:key="index" title="{{item}}">
- </van-tab>
- </van-tabs>
- </view>
- <view class="main-box">
- <scroll-view class="scroll-box z-padding-t-24" scroll-y="true" show-scrollbar="{{false}}" enhanced="true" bindscrolltolower="more">
- <block wx:for="{{list}}" wx:key="item.id">
- <order info="{{item}}" bind:orderTap="orderTap" bind:orderBtnTap="orderBtnTap"></order>
- </block>
- <van-empty description="暂无订单" wx:if="{{finish && list.length === 0}}" />
- <login wx:if="{{!token}}"/>
- </scroll-view>
- </view>
- </view>
|