foodDetail.wxml 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <!--pages/foodDetail/foodDetail.wxml-->
  2. <view class="foodContainer">
  3. <view>
  4. <text class="foodTitle">{{shopTitle}}</text>
  5. </view>
  6. <view class="foodWrap" wx:for="{{foodList}}" wx:key="index">
  7. <image class="foodImg" show-menu-by-longpress="true" mode="widthFix" bindtap="toPreviewImage" src="{{item}}"></image>
  8. </view>
  9. <view>
  10. <view class="shopDetail">
  11. <text class="shopDetailTile">简介:</text>
  12. <text>{{shopDescribe}}</text>
  13. </view>
  14. <view class="shopDetail">
  15. <text>热度:{{heat}}</text>
  16. </view>
  17. <view class="shopDetail">
  18. <text class="shopDetailTile">招牌菜:</text>
  19. <text>红烧肉、糖醋排骨</text>
  20. </view>
  21. <view class="shopDetail">
  22. <text class="shopDetailTile">电话:</text>
  23. <text>{{shopPhone}}</text>
  24. </view>
  25. <view class="shopDetail">
  26. <text class="shopDetailTile">地址:</text>
  27. <text class="address">{{shopAddress}}</text>
  28. <text class="adderessNav" bindtap="toFoodAddress">去这里</text>
  29. </view>
  30. </view>
  31. </view>