macunIntro.wxml 1.1 KB

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