index.wxml 785 B

12345678910111213141516171819202122
  1. <!--mHome/pages/presell/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. <!-- 预售大厅/我的预售 -->
  13. <van-swipe-cell>
  14. </van-swipe-cell>
  15. </view>
  16. <!-- empty -->
  17. <van-empty wx:if="{{ isEmpty }}" class="custom-image" description="无数据"/>