particulars.wxml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!--pages/particulars/particulars.wxml-->
  2. <view class="content">
  3. <scroll-view scroll-y="true" bindscroll="lower" scroll-with-animation="true" scroll-with-animation="true" enable-back-to-top="true">
  4. <!-- 科学艺术 -->
  5. <view class="art">
  6. <view class="works">
  7. <view class="share-con">
  8. <view class="head">
  9. <view class="head-img">
  10. <image src="{{productionData.featureMap.headImgUrl}}"></image>
  11. </view>
  12. <view class="lesson-name">
  13. <text>{{productionData.featureMap.wechatName}}</text>
  14. <text style="height: 100%">{{productionData.title}}</text>
  15. </view>
  16. </view>
  17. <view class="picture">
  18. <block wx:for="{{productionData.imagesList}}" wx:for-item="items" wx:key="{{items.id}}">
  19. <image src="{{items.path}}" bindtap="listenerButtonPreviewImage" data-img="{{items.path}}"></image>
  20. </block>
  21. </view>
  22. <view class="icon">
  23. <view bindtap="like">
  24. <image src="../../pages/image/zan.png" class="zan"></image>
  25. <text>{{productionData.postsAttributeInfo ? productionData.postsAttributeInfo.favors : '0'}}</text>
  26. </view>
  27. <view>
  28. <image src="../../pages/image/weatch.png" class="weatch"></image>
  29. <text>{{productionData.postsAttributeInfo ? productionData.postsAttributeInfo.views : '0'}}</text>
  30. </view>
  31. <view>
  32. <image src="../../pages/image/discuss.png" class="discuss"></image>
  33. <text>{{productionData.replyCount}}</text>
  34. </view>
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. </scroll-view>
  40. </view>