hotdt.wxml 772 B

1234567891011121314151617181920212223242526272829303132
  1. <import src="../../module/header.wxml"/>
  2. <scroll-view
  3. class="conent"
  4. style="height:{{windowh}}rpx;"
  5. scroll-y="true"
  6. >
  7. <template
  8. is="header"
  9. data="{{title:'好车热点',headerheight:headerheight,hasback: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. </scroll-view>