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.

23 lines
1.2 KiB

<view>
<view style="height: 40px;"></view>
<van-search style="width: 100%;" background="#006BFF" model:value="{{ brandForm.brand }}" placeholder="请输入品牌名称" bind:search="handlerSearch" />
<view class="bs-tabs">
<scroll-view class="bs-tab-sv" scroll-x="true">
<view class="bs-tab-sv-item" wx:for="{{recommandBrand}}" wx:key="index">
<!-- <image class="userAvatar" src="{{item.img}}" />
<view class="bs-tab-title">{{item.title}}</view> -->
</view>
</scroll-view>
</view>
<van-index-bar class="bs-bar" sticky-offset-top="40">
<view wx:for="{{brandList}}" wx:for-item="item" wx:key="index">
<van-index-anchor index="{{item.name}}" />
<van-cell wx:for="{{item.data}}" wx:for-item="it" wx:key="index" clickable data-id="{{it.brandname}}" bind:click="toBrandInsight">
<view slot="title" class="cell-item">
<image slot="icon" class="bs-item-image" src="{{it.img}}" />
<text>{{it.brandname}}</text>
</view>
</van-cell>
</view>
</van-index-bar>
</view>