index.wxml 1.2 KB

1234567891011121314151617181920212223242526
  1. <!--mHome/pages/purchase/list/index.wxml-->
  2. <view class="container">
  3. <!-- 导航栏 -->
  4. <van-nav-bar custom-style="background-color: #407DB8">
  5. <van-icon slot="left" name="arrow-left" size="25px" color="#fff" bind:click="backToParent"/>
  6. <text slot="title" style="color: #fff;">集采交易</text>
  7. </van-nav-bar>
  8. <view class="tab-view" style="position: sticky; top: 0; z-index: 999;">
  9. <!-- tabs -->
  10. <van-tabs id="category" active="{{ active }}" swipeable bind:change="onTabChange" color="#2270D9" line-width="20px" title-inactive-color="#333" title-active-color="#407DB8">
  11. <van-tab wx:for="{{ tabs }}" wx:for-item="itm" wx:key="id" id="{{ itm.id }}" title="{{ itm.name }}"/>
  12. </van-tabs>
  13. <view class="filter-view">
  14. <van-tabs id="subCategory" active="{{ status-1 }}" bind:change="onTabChange" line-height="0px" title-inactive-color="#333" title-active-color="#DC203D">
  15. <van-tab wx:for="{{ subtabs }}" wx:for-item="itm" wx:key="id" id="{{ itm.id }}" title="{{ itm.name }}"/>
  16. </van-tabs>
  17. <van-icon name="add-o" size="25px" color="#387BDC" bind:click="addPreSell"/>
  18. </view>
  19. </view>
  20. </view>
  21. <!-- empty -->
  22. <van-empty wx:if="{{ isEmpty }}" class="custom-image" description="无数据"/>