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.3 KiB

<!--pages/list/scene/index.wxml-->
<search bind:onload="search"></search>
<!-- <view class="hot-keywords">
<text>热搜</text>
<view class="hot-item" wx:for="{{10}}">产品产品产</view>
</view> -->
<!-- <view style="height:100rpx"></view> -->
<view style="height:30rpx"></view>
<view bindtap="gotoDetail" data-item="{{item}}" wx:for="{{list}}" url="/pages/info/sceneProductInfo/index?id={{item.id}}" class="item">
<image src="{{item.headimg}}" mode="aspectFill"></image>
<view class="no-text" wx:if="{{index<3 && keywords==''}}">NO.{{index+1}}</view>
<view class="right-info">
<view class="title textOver2">{{item.title}}</view>
<view class="tags">
<view class="tag" wx:for="{{item.tags}}">{{item}}</view>
</view>
<view class="location textOver" style="width:432rpx"><text class="iconfont icon-location"></text>{{item.address}}</view>
<view class="price-box">
<text wx:if="{{item.distance}}">距您直线距离{{item.distance}}</text>
<text wx:else></text>
<view class="price"><text>¥</text><text>{{item.price?item.price/100:0}}</text><text>起</text></view>
</view>
</view>
</view>
<view wx:if="{{list.length==0}}" class="common-empty" style="z-index:-1">
<image mode="widthFix" src="https://static.ticket.sz-trip.com/xcxImages/other/nodata.png"></image>
<view>暂无内容</view>
</view>