12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <!--pages/hot/hot.wxml-->
- <import src="../../module/header.wxml"/>
- <template
- is="header"
- data="{{title:'好车热点',headerheight:headerheight,hasback:true}}"
- />
- <page-scroll
- className="content"
- styleSheet="height:{{contentheight}}px;"
- scroll-y="{{selectbar==''?'true':'false'}}"
- bindscrolltolower="{{hasloadall?'':'getHots'}}"
- >
- <view wx:if="{{list.length>0}}" class="hot_list">
- <block wx:for="{{list}}" wx:key="id">
- <navigator
- open-type="navigate"
- url="../hotdt/hotdt?id={{item.id}}"
- class="hot_car_item">
- <view class="hot_car_info">
- <view
- class="hot_car_title" >
- {{item.title}}
- </view>
- <view class="hot_car_detail">
- {{item.time}}
- <image src="../../img/eye.png" class="hot_car_img"/>
- {{item.views}}
- </view>
- </view>
- <view>
- <image class="hot_car_image" src="{{item.img}}"/>
- </view>
- </navigator>
- </block>
- </view>
- <view wx:else class="hot_empty">
- <view class="hot_empty_w">还没有热点哦~</view>
- <navigator
- open-type="navigate"
- url="../buy/buy"
- class="hot_empty_bt">去看看车</navigator>
- </view>
-
- </page-scroll>
|