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