|
@@ -1,20 +1,20 @@
|
|
|
<!--pages/hotel/hotel.wxml-->
|
|
|
- <!-- <image style="width:100%;" mode="widthFix" src="../images/qk1.jpeg"></image> -->
|
|
|
+ <image style="width:100%;" mode="widthFix" src="{{info.img}}"></image>
|
|
|
<view class="top">
|
|
|
- <view class="tt">迎园饭店</view>
|
|
|
- <text>地址:上海市嘉定区清河路115号</text>
|
|
|
- <text>联系电话:021-59521346</text>
|
|
|
+ <view class="tt">{{info.name}}</view>
|
|
|
+ <text>地址:{{info.address}}</text>
|
|
|
+ <text>联系电话:{{info.telephone}}</text>
|
|
|
</view>
|
|
|
|
|
|
<view class="content">
|
|
|
- <navigator class="list">
|
|
|
- <image src="../images/qk1.jpeg"></image>
|
|
|
+ <view class="list" wx:for='{{info.rooms}}'>
|
|
|
+ <image src="{{item.imgs}}"></image>
|
|
|
<view>
|
|
|
- <view class="title">标间</view>
|
|
|
- <text style="color:#999;">15m² 早餐 双床房 2人入住 </text>
|
|
|
- <text>350元</text>
|
|
|
- <text>剩余数量:50</text>
|
|
|
- <navigator class="btn">预定</navigator>
|
|
|
+ <view class="title">{{item.name}}</view>
|
|
|
+ <text style="color:#999;">{{item.room_area}}m² {{item.food_condition}} {{item.floor}}层 {{item.enable_number}}人入住 </text>
|
|
|
+ <text>{{item.unit_price}}元</text>
|
|
|
+ <text>剩余数量:{{item.room_number}}</text>
|
|
|
+ <view bindtap="order" data-id='{{item.id}}' class="btn">预定</view>
|
|
|
</view>
|
|
|
- </navigator>
|
|
|
+ </view>
|
|
|
</view>
|