goods-tabs.wxml 742 B

123456789101112131415
  1. <view class="search-w">
  2. <search-bar placeholder="请输入关键字" bind:search="search" bindtap="toSearch" />
  3. </view>
  4. <view class="tabs-w">
  5. <van-tabs active="{{ active }}" color="#17D2D2" line-width="20" bind:change="onChange" tab-class="tab" nav-class="nav" tab-active-class="active" border="{{false}}">
  6. <van-tab title="{{ tabs.name }}" wx:for="{{categoryList}}" wx:for-item="tabs" wx:key="index">
  7. <view class="goods-list">
  8. <view class="goods-item" bindtap="toDetail" data-goods_id="{{ item.goodsId }}" wx:for="{{ goodsList }}" wx:key="{{ index }}">
  9. <image class="goods-image" src="{{ item.listPicUrl }}"></image>
  10. <view class="goods-name">{{ item.name }}</view>
  11. </view>
  12. </view>
  13. </van-tab>
  14. </van-tabs>
  15. </view>