singleBook.wxml 919 B

123456789101112131415161718192021222324
  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. <image src="../../../static/image/menu_wrapper.png" />
  10. <text >课文目录</text>
  11. </view>
  12. <view class="listSection">
  13. <view class="classItem" wx:for="{{lessonList}}" wx:key="{{index}}" data-id="{{item.id}}" data-title="{{item.title}}" bindtap="goToClass">
  14. <text class="classTitle">{{item.title}}</text>
  15. <text class="readingNum">{{item.readingNum}}朗读 ></text>
  16. </view>
  17. </view>
  18. <view class="footerSection">
  19. <view class="footerBuy">
  20. <text class="buyPrice"></text>
  21. <text class="buyProduct"></text>
  22. </view>
  23. </view>
  24. </view>