order.wxml 704 B

123456789101112131415161718
  1. <view class="order">
  2. <van-tabs ellipsis="{{false}}" sticky color="#6116FF" active="{{ active }}" bind:change="onChange">
  3. <van-tab wx:for="{{tabList}}" wx:key="index" title="{{item}}">
  4. </van-tab>
  5. </van-tabs>
  6. <view class="main-box">
  7. <scroll-view class="scroll-box z-padding-t-32" scroll-y="true" show-scrollbar="{{false}}" enhanced="true" bindscrolltolower="more">
  8. <block wx:for="{{list}}" wx:key="item.id">
  9. <order info="{{item}}" bind:orderTap="orderTap" bind:orderBtnTap="orderBtnTap"></order>
  10. </block>
  11. <van-empty description="暂无订单" wx:if="{{finish && list.length === 0}}" />
  12. <login wx:if="{{!token}}"/>
  13. </scroll-view>
  14. </view>
  15. </view>