1234567891011121314151617181920212223242526 |
- <nav type="back" background-color="{{activeColor}}" title="民宿详情" frontColor="#ffffff" />
- <view class="page-section swiper-images-wrapper">
- <swiper indicator-dots="{{indicatorDots}}" class="swiper-images" autoplay="{{SwiperInfo.autoplay}}" interval="{{SwiperInfo.interval}}" duration="{{SwiperInfo.duration}}">
- <block wx:for="{{hotel.image}}" wx:key="index">
- <swiper-item>
- <image class="swiper-item swiper-image " src="{{item}}"></image>
- </swiper-item>
- </block>
- </swiper>
- </view>
- <view class="page-section page-section-spacing shop-detail">
- <shop-detail-card shop="{{hotel}}" activeColor="{{activeColor}}"></shop-detail-card>
- </view>
- <view class="page-section">
- <scroll-view scroll-y="true" style="max-height:calc(100vh - 460rpx);" bindscrolltolower="loadMore">
- <goods-list list="{{rooms}}" activeColor="{{activeColor}}" mode="horizontal" bind:toDetail="details" bind:btnTap="details"></goods-list>
- </scroll-view>
- </view>
- <view class="page-section ">
- <view id="detail" wx:if="{{hotel.content}}">
- <rich-text nodes="{{hotel.content}}" style="width: 100%;height: 100%; margin-right: 0 auto;"></rich-text>
- </view>
- </view>
- <view class="page-section ">
- <comment-list comments="{{orders}}" title="房客评价" showMore="{{commentCount > 10? true:false}}"></comment-list>
- </view>
|