index.wxml 981 B

123456789101112131415161718192021
  1. <view class="authority">
  2. <view class="module" wx:for="{{worksList}}" wx:key="index">
  3. <view class="topic">{{item.title}}</view>
  4. <view class="explain">{{item.intro}}</view>
  5. <view class="works">
  6. <view class="work" wx:for="{{item.userReadList}}" wx:for-item='work' wx:key="index" bindtap="jumpReading"
  7. data-id='{{work.userRead.id}}'>
  8. <image src="{{work.userRead.coverImg}}" class="cover" wx:if="{{work.userReadExtend.resourcesType==0}}" />
  9. <view class="audioBox" wx:else>
  10. <image src="{{work.userReadExtend.backgroundVirtualImg}}" class="cover" />
  11. <view class="audioPlay">
  12. <image src="/static/audioBg.png" class="audioPlayBg" />
  13. <image src="/static/zhen.png" class="audioPlayZhen" />
  14. <image src="{{work.userRead.coverImg}}" class="cover" />
  15. </view>
  16. </view>
  17. <view class="textOver title">{{work.userRead.title}}</view>
  18. </view>
  19. </view>
  20. </view>
  21. </view>