order.wxml 744 B

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