12345678910111213141516171819 |
- <!--nova-tourism/pages/homestay/homestay-detail/index.wxml-->
- <nav type="back" background-color="#ffffff" frontColor="#000000" title="剑仙居民宿" />
- <scroll-view class="all" scroll-y="true" bindscroll="onScroll" style="height: {{contentHeight}}rpx;">
- <!-- 轮播图 -->
- <view class="picturebox">
- <swiper autoplay="{{true}}" interval="{{3000}}" circular duration="{{500}}" class="img" bindchange="onSwiperChange">
- <block wx:for="{{imageUrls}}" wx:key="index" wx:for-item="img">
- <swiper-item class="img">
- <image src="{{img}}" mode="aspectFill"></image>
- </swiper-item>
- </block>
- </swiper>
- <view class="numberbox">{{index}}/{{imageUrls.length}}</view>
- </view>
- <!-- 民宿信息 -->
- <view class="Legendary-Information">
- </view>
- </scroll-view>
|