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.
31 lines
2.0 KiB
31 lines
2.0 KiB
<view>
|
|
<view style="height: 40px;"></view>
|
|
<van-search style="width: 100%;" background="#006BFF" placeholder="请输入车型名称" use-action-slot bind:change="onChange" bind:search="handlerSearch">
|
|
<view style="color: #FFF;" slot="action" bind:tap="handlerSearch">搜索</view>
|
|
</van-search>
|
|
<view class="bs-tabs" wx:if="{{history.length != 0}}">
|
|
<scroll-view class="bs-tab-sv" scroll-x="true">
|
|
<view class="bs-tab-sv-item" wx:for="{{history}}" wx:key="index">
|
|
<!-- <image class="userAvatar" src="{{item.img}}" /> -->
|
|
<view class="bs-tab-title" data-id="{{item}}" bindtap="toModalInsight">{{item}}</view>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
<van-index-bar index-list="{{ alphalist }}" 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="brandname" clickable data-id="{{it.brandname}}" bind:click="modalChoose">
|
|
<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>
|
|
<van-popup show="{{popShow}}" custom-style="height: 88%;width: 65%;padding-bottom: 80rpx" position="right" bind:close="onClose">
|
|
<van-cell label="{{currentBrand}}"></van-cell>
|
|
<!-- <van-cell clickable bind:click="toModalInsight" title="宝马1系"></van-cell>
|
|
<van-cell title="宝马3系"></van-cell> -->
|
|
<van-cell clickable bind:click="toModalInsight" wx:for="{{modalList}}" wx:key="name" title="{{item.name}}" data-id="{{item.name}}"></van-cell>
|
|
</van-popup>
|
|
</view> |