mainIntro.wxml 717 B

123456789101112131415161718
  1. <view class="indexContainer">
  2. <!-- 轮播图区域 -->
  3. <swiper class="banners" autoplay circular interval="2000" indicator-dots="true" indicator-color="ivory" indicator-active-color="#d43c33" next-margin="0rpx" previous-margin="0rpx">
  4. <swiper-item wx:for="{{bannersList}}" wx:key="key">
  5. <image src="{{item.iconPath}}"></image>
  6. </swiper-item>
  7. </swiper>
  8. <!-- 景区介绍的正文 -->
  9. <view class="textContainer">
  10. <view class="titleHead">
  11. <text>{{intro.title}}</text>
  12. </view>
  13. <view class="introContent" style="white-space: pre-wrap;">
  14. <text user-select="true">{{intro.describes}}</text>
  15. </view>
  16. </view>
  17. </view>