12345678910111213141516171819202122232425262728293031 |
- <!--pages/foodDetail/foodDetail.wxml-->
- <view class="foodContainer">
- <view>
- <text class="foodTitle">{{shopTitle}}</text>
- </view>
- <view class="foodWrap" wx:for="{{foodList}}" wx:key="index">
- <image class="foodImg" show-menu-by-longpress="true" mode="widthFix" bindtap="toPreviewImage" src="{{item}}"></image>
- </view>
- <view>
- <view class="shopDetail">
- <text class="shopDetailTile">简介:</text>
- <text>{{shopDescribe}}</text>
- </view>
- <view class="shopDetail">
- <text>热度:{{heat}}</text>
- </view>
- <view class="shopDetail">
- <text class="shopDetailTile">招牌菜:</text>
- <text>红烧肉、糖醋排骨</text>
- </view>
- <view class="shopDetail">
- <text class="shopDetailTile">电话:</text>
- <text>{{shopPhone}}</text>
- </view>
- <view class="shopDetail">
- <text class="shopDetailTile">地址:</text>
- <text class="address">{{shopAddress}}</text>
- <text class="adderessNav" bindtap="toFoodAddress">去这里</text>
- </view>
- </view>
- </view>
|