index.wxml 868 B

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