与牧同行-兽医端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.8 KiB

  1. <view class="page-container">
  2. <!-- 内容区域 -->
  3. <scroll-view class="content-scroll" scroll-y="true">
  4. <!-- 文章头部 -->
  5. <view class="article-header">
  6. <!-- 分类标签 -->
  7. <view class="category-tag">
  8. <text class="category-text">{{detail.categoryName}}</text>
  9. </view>
  10. <!-- 标题 -->
  11. <view class="article-title">{{detail.title}}</view>
  12. <!-- 作者信息和发布时间 -->
  13. <view class="article-meta">
  14. <view class="author-info">
  15. <image src="{{baseUrl+detail.vetAvatar}}" class="author-avatar"></image>
  16. <view class="author-details">
  17. <text class="author-name">{{detail.vetName}}</text>
  18. <text class="publish-time">{{detail.publishTime}}</text>
  19. </view>
  20. </view>
  21. <!-- 浏览量 -->
  22. <view class="view-info">
  23. <image src="/pagesB/images/lll.png" class="view-icon"></image>
  24. <text class="view-count">{{detail.viewCount}}次浏览</text>
  25. </view>
  26. </view>
  27. <!-- 分类 -->
  28. <view class="fl">
  29. <view wx:for="{{tags}}">{{item}}</view>
  30. </view>
  31. </view>
  32. <!-- 文章内容 -->
  33. <view class="article-content">
  34. <!-- 摘要 -->
  35. <view wx:if="{{detail.summary}}" class="article-summary">
  36. {{detail.summary}}
  37. </view>
  38. <!-- 正文内容 -->
  39. <view class="article-body">
  40. <rich-text class="content-text" space="emsp" nodes="{{content}}"></rich-text>
  41. </view>
  42. </view>
  43. </scroll-view>
  44. </view>