hotdt.wxml 781 B

1234567891011121314151617181920212223242526272829303132
  1. <import src="../../module/header.wxml"/>
  2. <template
  3. is="header"
  4. data="{{title:'好车热点',headerheight:headerheight,hasback:true}}"
  5. />
  6. <page-scroll
  7. className="conent"
  8. styleSheet="height:{{contentheight}}px;"
  9. scroll-y="true"
  10. >
  11. <view class="hotdt_c">
  12. <view class="hotdt_title">
  13. {{title}}
  14. </view>
  15. <view class="hotdt_author">
  16. <image class="hotdt_author_img" src="../../img/logo.png"/>
  17. <view class="hotdt_author_dt">
  18. <view class="hotdt_author_name">{{author}}</view>
  19. <view class="hotdt_author_time">
  20. {{time}}
  21. <image class="hot_car_image" src="../../img/eye.png"/>
  22. {{views}}
  23. </view>
  24. </view>
  25. </view>
  26. <view class="hotdt_content">
  27. <rich-text
  28. nodes="{{content}}">
  29. </rich-text>
  30. </view>
  31. </view>
  32. </page-scroll>