12345678910111213141516171819202122232425 |
- <navigationBar bind:reload='requestAgain'></navigationBar>
- <view class="recommend">
- <!-- 一级分类 -->
- <view class="firstClassify">
- <view class="classifyBox" wx:for="{{categoryList}}" wx:key="id" data-item='{{item}}'
- bindtap="jumpChildClassify">
- <image class="icon" src="{{item.icon}}" />
- </view>
- <view class="classifyBox">
- <image bindtap="showTips" class="icon" src="/static/future.png" />
- </view>
- <view class="searchBox" bindtap="jumpSearch">
- 查找课文
- <image src="/static/search-3.png" class="search-icon" />
- </view>
- </view>
- <!-- 资源 -->
- <view class="resourceBox">
- <authority wx:if="{{listOptions.sortList[0]=='recommendReadList'}}"
- worksList="{{listOptions.recommendReadList}}" />
- <authority wx:if="{{listOptions.sortList[1]=='recommendReadList'}}"
- worksList="{{listOptions.recommendReadList}}" />
- </view>
- </view>
- <canvas id='share' type="2d"> </canvas>
|