singleBook.wxml 821 B

12345678910111213141516171819202122
  1. <view class="bookDetail">
  2. <view class="headSection">
  3. <image class="titleIcon" src="{{titleIcon}}" />
  4. <text class="bookName">{{title}}</text>
  5. <text class="bookInfo">{{bookInfo}}</text>
  6. </view>
  7. <view class="dirTag">
  8. <!-- <image src="" /> -->
  9. </view>
  10. <view class="listSection">
  11. <view class="classItem" wx:for="{{lessonList}}" wx:key="{{index}}" data-id="{{item.id}}" data-title="{{item.title}}" bindtap="goToClass">
  12. <text class="classTitle">{{item.title}}</text>
  13. <text class="readingNum">{{item.readingNum}}朗读 ></text>
  14. </view>
  15. </view>
  16. <view class="footerSection">
  17. <view class="footerBuy">
  18. <text class="buyPrice"></text>
  19. <text class="buyProduct"></text>
  20. </view>
  21. </view>
  22. </view>