index.wxml 708 B

1234567891011121314151617
  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. <!-- tabs -->
  9. <van-tabs swipeable bind:change="onTabChange" color="#2270D9" line-width="20px" title-inactive-color="#333" title-active-color="#407DB8">
  10. <van-tab wx:for="{{ tabs }}" wx:for-item="itm" wx:key="id" id="{{ itm.id }}" title="{{ itm.name }}"/>
  11. </van-tabs>
  12. </view>
  13. <!-- empty -->
  14. <van-empty wx:if="{{ isEmpty }}" class="custom-image" description="无数据"/>