mainIntro.wxml 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <view class="indexContainer">
  2. <!-- 轮播图区域 -->
  3. <view>
  4. <view class="noBanners" wx:if="{{bannersList.length == 0}}">
  5. <text>暂无图片展示</text>
  6. </view>
  7. <view wx:else>
  8. <swiper class="banners" autoplay circular interval="2000" indicator-dots="true" indicator-color="ivory" indicator-active-color="#d43c33" next-margin="0rpx" previous-margin="0rpx">
  9. <swiper-item wx:for="{{bannersList}}" wx:key="key">
  10. <image src="{{item.iconPath}}"></image>
  11. </swiper-item>
  12. </swiper>
  13. </view>
  14. </view>
  15. <!-- 景区介绍的正文 -->
  16. <view>
  17. <view wx:if="{{intro.describes == ''}}" class="noInto">
  18. <text>暂无介绍内容</text>
  19. </view>
  20. <view wx:else class="textContainer">
  21. <view class="titleHead">
  22. <text>{{intro.title}}</text>
  23. </view>
  24. <view class="introContent" style="white-space: pre-wrap;">
  25. <text user-select="true">{{intro.describes}}</text>
  26. </view>
  27. </view>
  28. </view>
  29. </view>