recommendFood.wxml 804 B

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