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.
28 lines
1.4 KiB
28 lines
1.4 KiB
<view class="view-page">
|
|
<view class="navigation nav-top" style="background: #006BFF;">
|
|
<!--手机状态栏的高度-->
|
|
<view style="height:{{statusBarHeight}}px;width: 100%;"></view>
|
|
<view class="bs-top-title" style="height: {{navBarHeight}}px;width: 100%;">硕为思汽车智能洞察</view>
|
|
<view class="bs-top">
|
|
<van-search style="width: 100%;" background="#006BFF" value="{{ value }}" placeholder="请输入品牌" bind:search="handlerSearch" />
|
|
</view>
|
|
<view class="bs-tabs">
|
|
<scroll-view class="bs-tab-sv" scroll-x="true" enable-flex="true">
|
|
<view class="bs-tab-sv-item" wx:for="{{navData}}" data-row="{{item}}" wx:key="index" bindtap="handlerChoose">
|
|
<image class="userAvatar" src="{{item.img}}" />
|
|
<view class="bs-tab-title">{{item.brandname}}</view>
|
|
</view>
|
|
</scroll-view>
|
|
</view>
|
|
</view>
|
|
<view class="bs-block" style="height: {{heightTop}}px;"></view>
|
|
<van-index-bar class="bs-bar" sticky-offset-top="{{heightTop}}">
|
|
<view wx:for="{{mockData}}" wx:key="idx">
|
|
<van-index-anchor index="{{item.name}}" />
|
|
<view class="bs-item" wx:for="{{item.data}}" wx:key="idx" wx:for-item="item2">
|
|
<image slot="icon" class="bs-item-image" src="{{item2.img}}" lazy-load="{{true}}"/>
|
|
<text>{{item2.brandname}}</text>
|
|
</view>
|
|
</view>
|
|
</van-index-bar>
|
|
</view> |