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.

42 lines
2.3 KiB

5 years ago
<!--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> -->
<image lazy-load class="topImg" src="https://static.ticket.sz-trip.com/uploads/20240521/3022ab8f3d45444ead1e77f9a2112dc0.png" mode=""/>
<view class="navBox">
<view class="nav {{index == navIndex?'seld-nav':''}}" wx:for="{{navList}}" data-item="{{item}}" bindtap="changeType" data-index="{{index}}">
<image lazy-load src="https://static.ticket.sz-trip.com{{item.icon}}" mode=""/>
<view class="{{index == navIndex?'seld-nav-text':'nav-text'}}">
{{item.name}}
</view>
</view>
</view>
5 years ago
<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 lazy-load src="{{item.headimg}}" mode="aspectFill"></image>
3 years ago
<!-- <view class="no-text" wx:if="{{index<3 && keywords==''}}">NO.{{index+1}}</view> -->
<!-- <view class="status-text" wx:if="{{item.garden_flag_text && item.garden_flag!=1}}">{{item.garden_flag_text}}</view> -->
5 years ago
<view class="right-info">
<view class="title textOver2">{{item.title}}</view>
8 months ago
<view class="tags" style="width: 100%;">
5 years ago
<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> -->
5 years ago
<view class="price-box">
8 months ago
<view style="display: flex;align-items: center;font-weight: 400;font-size: 24rpx;color: #999999;" class="textOver">
<text wx:if="{{item.distance}}">{{item.distance}}</text>
<text wx:else></text>
8 months ago
<view wx:if="{{item.distance}}" style="width: 1rpx;height: 21rpx;background: #999999;flex-shrink: 0;margin: 0 12rpx;"></view>
<view class="location textOver">{{item.address}}</view>
</view>
8 months ago
<!-- <view class="price"><text>¥</text><text>{{item.price?item.price/100:0}}</text><text>起</text></view> -->
5 years ago
</view>
</view>
</view>
<view wx:if="{{list.length==0}}" class="common-empty" style="z-index:-1;top: 220rpx;">
<image lazy-load mode="widthFix" src="https://static.ticket.sz-trip.com/xcxImages/other/nodata.png"></image>
5 years ago
<view>暂无内容</view>
</view>