1234567891011121314151617181920212223242526272829 |
- <!--pages/recommendFood/recommendFood.wxml-->
- <view class="recommendNo" wx:if="{{foodList.length == 0}}">
- <text>暂无美食推荐</text>
- </view>
- <view class="foodWrap" wx:else>
- <view class="foodDetail" bindtap="tofoodDetail" data-item="{{item}}" wx:for="{{foodList}}" wx:key="key">
- <view>
- <view class="noFoodImg" wx:if="{{item.iconPath.length == 0}}">
- 商家未上传照片
- </view>
- <view wx:else>
- <image class="foodImg" src="{{item.coverImage}}"></image>
- </view>
- </view>
- <view class="foodIntro">
- <text class="foodName">{{item.title}}</text>
- <view class="phone">
- <!-- <text class="phoneNum">营业时间:</text> -->
- <text class="openTime">营业时间:</text>
- </view>
- <view class="foodLocate">
- <image class="locateIcon" mode="widthFix" src="../../images/foodLocate.png"></image>
- <text class="address">{{item.location == null ? '商家未留详细地址' : item.location}}</text>
- </view>
- </view>
- </view>
- </view>
|