1234567891011121314151617181920212223242526272829 |
- <!--pages/foodDetail/foodDetail.wxml-->
- <view class="foodContainer">
- <view>
- <text class="foodTitle">蜀国飘香火锅</text>
- </view>
- <view class="foodWrap">
- <image class="foodImg" show-menu-by-longpress="true" mode="widthFix" src="../../images/1.jpg"></image>
- <image class="foodImg" show-menu-by-longpress="true" mode="widthFix" src="../../images/2.jpg"></image>
- </view>
- <view>
- <view class="shopDetail">
- <text class="shopDetailTile">简介:</text>
- <text>蜀国飘香(天府店),位于成都市,人均消费价格为66元。适宜休闲小憩、随便吃吃、情侣约会、朋友聚餐。</text>
- </view>
- <view class="shopDetail">
- <text class="shopDetailTile">招牌菜:</text>
- <text>红烧肉、糖醋排骨</text>
- </view>
- <view class="shopDetail">
- <text class="shopDetailTile">电话:</text>
- <text>13800138000</text>
- </view>
- <view class="shopDetail">
- <text class="shopDetailTile">地址:</text>
- <text class="address">四川省泸州市纳溪区纳溪马村风景区观景台旁</text>
- <text class="adderessNav" bindtap="toFoodAddress">去这里</text>
- </view>
- </view>
- </view>
|