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.
34 lines
1.7 KiB
34 lines
1.7 KiB
<!--pages/list/food/index.wxml-->
|
|
<search bind:onload="search"></search>
|
|
<view class="types">
|
|
<view class="type-item active">
|
|
<picker mode="selector" range="{{types}}" bindchange="changeType">
|
|
<view class="picker">
|
|
<view class="areatext">{{types[typeIndex]}}</view>
|
|
<image src="https://static.ticket.sz-trip.com/xcxImages/activity/arrow.png" mode="widthFix"></image>
|
|
</view>
|
|
</picker>
|
|
</view>
|
|
<view class="type-item{{sort=='distance'?' active':''}}" bindtap="setSort">距离最近</view>
|
|
</view>
|
|
<view class="list">
|
|
<view bindtap="gotoDetail" data-item="{{item}}" wx:for="{{list}}" url="/pages/info/foodProductInfo/index?id={{item.id}}" class="item">
|
|
<image class="main-img" src="{{item.headimg}}" mode="aspectFill"></image>
|
|
<view class="infos">
|
|
<view class="title textOver2">{{item.title}}</view>
|
|
<view class="location"><text class="iconfont icon-location"></text>{{item.address}}</view>
|
|
<view class="distance" wx:if="{{item.distance}}">距您直线距离{{item.distance}}</view>
|
|
<view class="bottom-infos">
|
|
<view class="tag" wx:for="{{item.display_tags}}">{{item}}</view>
|
|
<!-- <view class="price"><text>¥</text><text>{{item.price/100}}</text><text>起</text></view> -->
|
|
</view>
|
|
</view>
|
|
<view class="iconfont icon-arrow-line-right"></view>
|
|
<view class="order-btn" wx:if="{{typeIndex==1}}">立即预定</view>
|
|
<image src="https://static.ticket.sz-trip.com/xcxImages/listtop/foodtip.png" mode="widthFix" class="tip-img"></image>
|
|
</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>
|