与牧同行-小程序用户端
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.

45 lines
1.6 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. </view>
  28. <!-- 文章内容 -->
  29. <view class="article-content">
  30. <!-- 摘要 -->
  31. <view wx:if="{{detail.summary}}" class="article-summary">
  32. {{detail.summary}}
  33. </view>
  34. <!-- 正文内容 -->
  35. <view class="article-body">
  36. <rich-text class="content-text" space="emsp" nodes="{{content}}"></rich-text>
  37. </view>
  38. </view>
  39. </scroll-view>
  40. </view>