12345678910111213141516171819202122232425262728 |
- <!--pages/quality/index/index.wxml-->
- <view class="container-goods">
- <view class="tabs">
- <scroll-view class="scroll-view" scroll-x scroll-into-view="{{scrollIntoView}}" scroll-with-animation>
- <view data-index="{{index}}" id="location{{item.id}}" class="tab {{index == currentTab ? 'tab-active' : ''}}" wx:for="{{tabs}}" wx:key="item" bindtap="handleClassfiy">{{item.name}}</view>
- </scroll-view>
- </view>
- <view class="goods">
- <view class="goods-item" data-id="{{item.id}}" bindtap="goodsDetail" wx:for="{{list}}">
- <image src="{{item.thumbnail}}"></image>
- <view class="body">
- <view class="goods-title">
- {{item.name}}
- <!-- <text>{{item.name}}</text> -->
- </view>
- <view class="goods-classify">{{item.categoryName}}</view>
- <view class="goods-total-num">剩余:{{item.quantity}}</view>
- <view class="getCoupon">点击领券</view>
- <!-- <view class="goods-price">{{item.price}}</view> -->
- </view>
- </view>
- <block wx:if="{{list.length<=0}}">
- <view class='tc h100'>
- <image src="{{nodata}}" class='nodata-img'></image>
- </view>
- </block>
- </view>
- </view>
|