main.wxml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!--pages/main/main.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="notice" bindtap="toNotice">
  14. <text class="noticeTitle">公告:</text>
  15. <image class="noticeIcon" mode="widthFix" src="../../images/notice.png"></image>
  16. <view class="noticeContent">
  17. <text class="noticeDetail">{{newNoticeTitle}}</text>
  18. </view>
  19. <text class="toNoticeDetail">查看详情</text>
  20. </view>
  21. <!-- 导航模块 -->
  22. <view class="navList">
  23. <view class="mainIntro" bindtap="toMainIntro">
  24. <text class="title">纳溪介绍</text>
  25. </view>
  26. <view class="secondIntro" bindtap="toSecondIntro">
  27. <text class="title">马村介绍</text>
  28. </view>
  29. <view class="scenicList" bindtap="toScenicList">
  30. <text class="title">景点介绍</text>
  31. </view>
  32. <view class="recommendCate" bindtap="toRecommendFood">
  33. <text class="title">美食推荐</text>
  34. </view>
  35. <button class="suggest" open-type="feedback" type="primary">反馈建议</button>
  36. </view>
  37. </view>