You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
778 B
18 lines
778 B
<!--pages/index/Salesranking/Brandranking/Brandranking.wxml-->
|
|
<view class="event_recom1">
|
|
<!-- 占位盒子 -->
|
|
<!-- <view class="event_box"></view> -->
|
|
<view class="my_cell" bindtap="Allbrands">
|
|
<view class="all">ALL</view>
|
|
<text>全部品牌</text>
|
|
</view>
|
|
<van-index-bar>
|
|
<view wx:for="{{mockData}}" wx:key="idx">
|
|
<van-index-anchor index="{{item.name}}" />
|
|
<view class="my_cell" wx:for="{{item.data}}" data-brand="{{item2.brandname}}" wx:key="idx" wx:for-item="item2" bindtap="Brands">
|
|
<image slot="icon" class="bs-item-image" src="{{item2.img}}" lazy-load="{{true}}"></image>
|
|
<text>{{item2.brandname}}</text>
|
|
</view>
|
|
</view>
|
|
</van-index-bar>
|
|
</view> |