|
@@ -1,5 +1,12 @@
|
|
|
<!--pages/hotel/hotel.wxml-->
|
|
<!--pages/hotel/hotel.wxml-->
|
|
|
- <image style="width:100%;" mode="widthFix" src="{{info.img}}"></image>
|
|
|
|
|
|
|
+<swiper indicator-dots="{{true}}">
|
|
|
|
|
+ <block wx:for="{{info.imgs}}" wx:key="*this">
|
|
|
|
|
+ <swiper-item>
|
|
|
|
|
+ <image style="width:100%;height:100%;" src="{{item}}"></image>
|
|
|
|
|
+ </swiper-item>
|
|
|
|
|
+ </block>
|
|
|
|
|
+</swiper>
|
|
|
|
|
+
|
|
|
<view class="top">
|
|
<view class="top">
|
|
|
<view class="tt">{{info.name}}</view>
|
|
<view class="tt">{{info.name}}</view>
|
|
|
<text>地址:{{info.address}}</text>
|
|
<text>地址:{{info.address}}</text>
|
|
@@ -9,6 +16,7 @@
|
|
|
<view class="content">
|
|
<view class="content">
|
|
|
<view class="list" wx:for='{{info.rooms}}'>
|
|
<view class="list" wx:for='{{info.rooms}}'>
|
|
|
<image src="{{item.img}}"></image>
|
|
<image src="{{item.img}}"></image>
|
|
|
|
|
+
|
|
|
<view>
|
|
<view>
|
|
|
<view class="title">{{item.name}}</view>
|
|
<view class="title">{{item.name}}</view>
|
|
|
<text style="color:#999;">{{item.room_area}}m² {{item.food_condition}} {{item.floor}}层 {{item.enable_number}}人入住 </text>
|
|
<text style="color:#999;">{{item.room_area}}m² {{item.food_condition}} {{item.floor}}层 {{item.enable_number}}人入住 </text>
|
|
@@ -25,7 +33,14 @@
|
|
|
<view class="room">
|
|
<view class="room">
|
|
|
<icon bindtap="close" class="icon-small" type="cancel" size="23"></icon>
|
|
<icon bindtap="close" class="icon-small" type="cancel" size="23"></icon>
|
|
|
<text class="room_title">{{data.name}}</text>
|
|
<text class="room_title">{{data.name}}</text>
|
|
|
- <image src="{{data.img}}"></image>
|
|
|
|
|
|
|
+ <!-- <image src="{{data.img}}"></image> -->
|
|
|
|
|
+ <swiper indicator-dots="{{true}}">
|
|
|
|
|
+ <block wx:for="{{data.imgs}}" wx:key="*this">
|
|
|
|
|
+ <swiper-item>
|
|
|
|
|
+ <image style="width:100%;height:100%;" src="{{item}}"></image>
|
|
|
|
|
+ </swiper-item>
|
|
|
|
|
+ </block>
|
|
|
|
|
+ </swiper>
|
|
|
<view class="room_item">
|
|
<view class="room_item">
|
|
|
房型信息
|
|
房型信息
|
|
|
<view><text>房型:{{data.room_type}}</text><text>面积:{{data.room_area}}m²</text></view>
|
|
<view><text>房型:{{data.room_type}}</text><text>面积:{{data.room_area}}m²</text></view>
|