recommendFood.wxml 918 B

12345678910111213141516171819202122
  1. <!--pages/recommendFood/recommendFood.wxml-->
  2. <view class="recommendNo" wx:if="{{foodList.length == 0}}">
  3. <text>暂无美食推荐</text>
  4. </view>
  5. <view class="foodWrap" wx:else>
  6. <view class="foodDetail" bindtap="tofoodDetail" data-item="{{item}}" wx:for="{{foodList}}" wx:key="key">
  7. <image class="foodImg" src="{{item[0].iconPath}}"></image>
  8. <view class="foodIntro">
  9. <text class="foodName">{{item.title}}</text>
  10. <view class="phone">
  11. <image class="phoneIcon" mode="widthFix" src="../../images/phone.png"></image>
  12. <text class="phoneNum">{{item.phone}}</text>
  13. </view>
  14. <view class="foodLocate">
  15. <image class="locateIcon" mode="widthFix" src="../../images/foodLocate.png"></image>
  16. <text class="address">{{item.location}}</text>
  17. </view>
  18. </view>
  19. </view>
  20. </view>