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
42 lines
2.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> -->
|
|
<image 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 src="https://static.ticket.sz-trip.com{{item.icon}}" mode=""/>
|
|
<view class="{{index == navIndex?'seld-nav-text':'nav-text'}}">
|
|
{{item.name}}
|
|
</view>
|
|
</view>
|
|
</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="status-text" wx:if="{{item.garden_flag_text && item.garden_flag!=1}}">{{item.garden_flag_text}}</view> -->
|
|
<view class="right-info">
|
|
<view class="title textOver2">{{item.title}}</view>
|
|
<view class="tags" style="width: 100%;">
|
|
<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">
|
|
<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>
|
|
<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>
|
|
<!-- <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;top: 220rpx;">
|
|
<image mode="widthFix" src="https://static.ticket.sz-trip.com/xcxImages/other/nodata.png"></image>
|
|
<view>暂无内容</view>
|
|
</view>
|