index.wxml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <view class="container ">
  2. <swiper class='swiper-banner' indicator-dots autoplay interval="5000" duration="500" indicator-active-color="#2cae36">
  3. <swiper-item wx:for="{{banner}}" wx:key="id">
  4. <image src="{{item.image}}" class="wh100" bindtap='navigate_native' data-url="/pages/home/newsDetails/index?id={{item.newsId}}&type={{item.activityType}}" />
  5. </swiper-item>
  6. </swiper>
  7. <view class='lineHt20'></view>
  8. <view class='flexRow icons'>
  9. <view class='flexCol flexCenter' wx:for="{{iconList}}" wx:key="content" bindtap='navigate_native' data-url='{{item.url}}'>
  10. <image src='{{item.picUrl}}'></image>
  11. <text>{{item.content}}</text>
  12. </view>
  13. </view>
  14. <view class='lineHt20'></view>
  15. <view class='flexCol p20'>
  16. <view class='flexRow jcsb aCenter title'>
  17. <view class='flexRow icon'>
  18. <text class='fwb'>科大要闻</text>
  19. </view>
  20. <view class='flexRow more' bindtap='navigate_native' data-url="./list/index?type=administrationInfo&title=科大要闻">
  21. <text>查看更多</text>
  22. <image src='/images/right.png'></image>
  23. </view>
  24. </view>
  25. <list templateList="{{newsList}}" />
  26. </view>
  27. <view class='flexCol p20'>
  28. <view class='flexRow jcsb aCenter title'>
  29. <view class='flexRow icon'>
  30. <text class='fwb'>学生标兵</text>
  31. </view>
  32. <view class='flexRow more' bindtap='navigate_native' data-url="./list/index?type=servicePacesetter&title=学生标兵">
  33. <text>查看更多</text>
  34. <image src='/images/right.png'></image>
  35. </view>
  36. </view>
  37. <swiper class="swiper-list" autoplay circular interval="3000" duration="1000" previous-margin="237rpx" next-margin='237rpx' bindchange='swiperChangeElegant'>
  38. <swiper-item wx:for="{{TSList}}" wx:key="id">
  39. <list templateList="{{[item]}}" templateData="{{ {isAction:index===currentSwiperElegant} }}" />
  40. </swiper-item>
  41. </swiper>
  42. </view>
  43. <view class='flexCol p20' style="justify-content:space-between;">
  44. <view class='flexRow jcsb aCenter title'>
  45. <view class='flexRow icon'>
  46. <text class='fwb'>校园动态</text>
  47. </view>
  48. <view class='flexRow more' bindtap='navigate_native' data-url="./list/index?type=centraActivities&title=校园动态">
  49. <text>查看更多</text>
  50. <image src='/images/right.png'></image>
  51. </view>
  52. </view>
  53. <view class='mt10'>
  54. <list templateList="{{activityNewsList}}" />
  55. </view>
  56. </view>
  57. </view>