index.wxml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <nav-bar navbar-data='{{nvabarData}}'></nav-bar>
  2. <view class="home">
  3. <view class="main">
  4. <view class="swiper-tab">
  5. <view class="swiper-tab-item {{currentTab==0?'active':''}}" data-current="0" bindtap="clickTab" >政策解读</view>
  6. <view class="swiper-tab-item {{currentTab==1?'active':''}}" data-current="1" bindtap="clickTab">权威发布</view>
  7. </view>
  8. <swiper current="{{currentTab}}" bindchange="swiperTab" style="height:{{sHeight}}">
  9. <swiper-item>
  10. <view class="policyLeft">
  11. <view class="list" wx:key="unique" wx:for="{{policyList}}" wx:for-item="item" id="policy">
  12. <view bindtap="policyListDetail" id="{{list._id}}" data-pid="{{item.id}}">
  13. <!-- <image src="{{item.image}}"></image> -->
  14. <view class="info">
  15. <p>{{item.title}}</p>
  16. <!-- <p>
  17. <span>主题词:{{item.subject_headings}}</span>
  18. <span>政策等级:{{item.subject_classification}}</span>
  19. </p> -->
  20. <view class="infos">
  21. <text>{{item.brief_introduction}}</text>
  22. <text>{{item.create_time}}</text>
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="loadmore loading" wx:if="{{ policyHasMore }}">正在加载...</view>
  29. <view class="loadmore" wx:else>已经到底了</view>
  30. </swiper-item>
  31. <swiper-item>
  32. <view class="policyLeft policyRight">
  33. <view class="list" wx:key="unique" wx:for="{{unscrambleList}}" wx:for-item="item" id="unscramble">
  34. <view bindtap="unscrambleListDetail" id="{{list._id}}" data-unid="{{item.id}}">
  35. <!-- <image src="{{item.image}}"></image> -->
  36. <view class="info">
  37. <p>{{item.title}}</p>
  38. <p>
  39. <span>主题词:{{item.subject_headings}}</span>
  40. <span>政策等级:{{item.subject_classification}}</span>
  41. </p>
  42. </view>
  43. </view>
  44. </view>
  45. </view>
  46. <view class="loadmore loading" wx:if="{{ unscrambleHasMore }}">正在加载...</view>
  47. <view class="loadmore" wx:else>已经到底了</view>
  48. </swiper-item>
  49. </swiper>
  50. </view>
  51. </view>