index.wxml 820 B

123456789101112131415
  1. <navigationBar bind:reload='requestAgain'></navigationBar>
  2. <view class="resourceBox">
  3. <scroll-view class="firstClassify" style="top:{{navBarHeight}}px" scroll-x="true" enhanced show-scrollbar="{{false}}">
  4. <view class="firstBox" wx:for="{{categoryList}}" wx:key="id" data-item='{{item}}' bindtap="jumpChildClassify">
  5. <image class="icon" src="{{item.icon}}" />
  6. </view>
  7. </scroll-view>
  8. <view class="resourceBox">
  9. <authority wx:if="{{listOptions.sortList[0]=='recommendReadList'}}"
  10. worksList="{{listOptions.recommendReadList}}" />
  11. <activityList classify='3' dataList='{{listOptions.activityList}}' />
  12. <authority wx:if="{{listOptions.sortList[1]=='recommendReadList'}}"
  13. worksList="{{listOptions.recommendReadList}}" />
  14. </view>
  15. </view>