secondIntro.wxml 810 B

12345678910111213141516171819202122
  1. <!--pages/secondIntro/secondIntro.wxml-->
  2. <view class="indexContainer">
  3. <!-- 轮播图区域 -->
  4. <swiper class="banners" autoplay circular interval="2000" indicator-dots="true" indicator-color="ivory" indicator-active-color="#d43c33" next-margin="0rpx" previous-margin="0rpx">
  5. <swiper-item>
  6. <image src="../../images/1.jpg"></image>
  7. </swiper-item>
  8. <swiper-item>
  9. <image src="../../images/2.jpg"></image>
  10. </swiper-item>
  11. </swiper>
  12. <!-- 景区介绍的正文 -->
  13. <view class="textContainer">
  14. <view class="titleHead">
  15. <text>{{textIntro.title}}</text>
  16. </view>
  17. <view class="introContent" style="white-space: pre-wrap;">
  18. <text>{{textIntro.describes}}</text>
  19. </view>
  20. </view>
  21. </view>