article-detail.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. <template>
  2. <view class="detail-container">
  3. <view v-if="loading" class="loading-wrap">
  4. <view class="loading-spinner"></view>
  5. <text class="loading-text">加载中...</text>
  6. </view>
  7. <view v-else-if="error" class="error-wrap">
  8. <text class="error-icon">📄</text>
  9. <text class="error-text">{{ errorMsg }}</text>
  10. <button class="retry-btn" @click="loadDetail(articleId)">重新加载</button>
  11. </view>
  12. <template v-else-if="article">
  13. <scroll-view scroll-y class="content-scroll" @scrolltolower="onScrollToBottom">
  14. <image v-if="article.coverImage" class="detail-cover" :src="article.coverImage" mode="widthFix" />
  15. <text class="detail-title">{{ article.title }}</text>
  16. <view class="detail-meta">
  17. <text class="meta-author">{{ article.author || '浠艾福' }}</text>
  18. <text class="meta-sep">|</text>
  19. <text class="meta-date">{{ formatDate(article.publishedAt) }}</text>
  20. <text class="meta-sep">|</text>
  21. <text class="meta-readtime">{{ article.readTime || 3 }}分钟阅读</text>
  22. <text class="reading-time-badge" v-if="!readingCompleted">{{ formatReadingTime(readingSeconds) }}</text>
  23. <text class="reading-time-badge completed" v-else>✅ 阅读完成</text>
  24. </view>
  25. <view class="detail-category-row">
  26. <text class="detail-category">{{ article.categoryName || '' }}</text>
  27. </view>
  28. <view v-if="article.relatedDimensions" class="detail-dimensions">
  29. <view v-for="dim in parseDimensions(article)" :key="dim.code" class="dim-bar-item">
  30. <view class="dim-bar" :style="{ background: dim.color, width: dim.weight + '%' }"></view>
  31. <text class="dim-label">{{ dim.name }}</text>
  32. </view>
  33. </view>
  34. <view class="divider"></view>
  35. <view class="detail-body"><rich-text :nodes="article.content"></rich-text></view>
  36. <!-- 评论区(已屏蔽) -->
  37. <view style="height: 200rpx;"></view>
  38. </scroll-view>
  39. <!-- 底部 -->
  40. <view class="detail-footer">
  41. <view class="share-btn" @click="generatePoster">
  42. <text class="share-btn-icon">🖼</text>
  43. </view>
  44. </view>
  45. </template>
  46. <ContentSharePoster :show="showPoster" :title="(article && article.title) || ''" :coverImage="(article && article.coverImage) || ''" :qrCodeBase64="posterQrCode || ''" typeLabel="好文推荐" :dimensionCode="posterDimension || ''" :summary="posterSummary || ''" :inviteText="posterInviteText || ''" @close="closePoster" />
  47. <!-- 浠宝答题弹窗 -->
  48. <view class="quiz-mask" v-if="showQuiz" @click="closeQuiz">
  49. <view class="quiz-dialog" @click.stop>
  50. <view class="quiz-mascot">
  51. <text class="mascot-icon">{{ mascotIcon }}</text>
  52. <text class="mascot-name">{{ mascotName }}</text>
  53. </view>
  54. <text class="quiz-intro">阅读完成!考考你三个问题~</text>
  55. <view class="quiz-question" v-for="(q, qi) in quizQuestions" :key="qi">
  56. <text class="q-title">问题{{ qi+1 }}: {{ q.question }}</text>
  57. <view class="q-options">
  58. <text v-for="(opt, oi) in q.options" :key="oi" class="q-option" :class="{ selected: quizAnswers[qi] === String.fromCharCode(65 + oi) }" @click="selectQuizAnswer(qi, oi)">{{ opt }}</text>
  59. </view>
  60. </view>
  61. <button class="quiz-submit" @click="submitQuiz">提交答案</button>
  62. </view>
  63. </view>
  64. <!-- 答题结果 -->
  65. <view class="result-mask" v-if="showResult">
  66. <view class="result-dialog">
  67. <text class="result-icon">{{ resultIcon }}</text>
  68. <text class="result-text">答对 {{ quizResult.correctCount }}/{{ quizResult.totalQuestions }} 题</text>
  69. <text class="result-energy">获得 {{ quizResult.earnedEnergy }} 能量 ⚡</text>
  70. <button class="result-btn" @click="closeResult">知道了</button>
  71. </view>
  72. </view>
  73. </view>
  74. </template>
  75. <script>
  76. import { getArticleDetail, reportReadingTime, getShareQrCode, completeArticleRead, generateQuiz, submitQuiz } from '@/utils/api.js'
  77. import shareMixin from '../../components/share-mixin.js'
  78. import ContentSharePoster from '@/components/ContentSharePoster.vue'
  79. import config from '@/config.js'
  80. export default {
  81. mixins: [shareMixin],
  82. components: { ContentSharePoster },
  83. data() {
  84. return {
  85. articleId: '', article: null, loading: true, error: false, errorMsg: '',
  86. readingSeconds: 0, lastReportedSeconds: 0, readingCompleted: false,
  87. isTimerRunning: false, timerHandle: null, syncHandle: null,
  88. showPoster: false, posterQrCode: '',
  89. posterDimension: '', posterSummary: '', posterInviteText: '',
  90. // 答题
  91. showQuiz: false, quizQuestions: [], quizAnswers: [], showResult: false, quizResult: {},
  92. mascotList: [{ icon: '🐶', name: '浠宝' }, { icon: '🐼', name: '福宝' }],
  93. mascotIcon: '🐶', mascotName: '浠宝'
  94. }
  95. },
  96. computed: {},
  97. onLoad(options) {
  98. this.mascotIcon = this.mascotList[Math.floor(Math.random() * 2)].icon
  99. this.mascotName = this.mascotList[Math.floor(Math.random() * 2)].name
  100. if (options && options.id) { this.articleId = options.id; this.loadDetail(options.id) }
  101. else { this.error = true; this.errorMsg = '参数错误'; this.loading = false }
  102. },
  103. onShow() { if (this.article && !this.error) this.startNewReadingSession() },
  104. onHide() { this.pauseReadingTimer() },
  105. onUnload() { this.pauseReadingTimer() },
  106. methods: {
  107. async loadDetail(id) {
  108. this.loading = true; this.error = false
  109. try {
  110. var res = await getArticleDetail({ id: id })
  111. if (res.code === 200 && res.data) {
  112. this.article = res.data
  113. this.article.coverImage = this.getImageUrl(this.article.coverImage)
  114. this.article.content = this.resolveContentUrls(this.article.content)
  115. this.setShareInfo('推荐阅读: ' + (res.data.title || ''), '/pages/article-center/article-detail?id=' + id)
  116. this.startReadingTimer()
  117. } else { this.error = true; this.errorMsg = '文章不存在或无权限查看' }
  118. } catch (e) { this.error = true; this.errorMsg = '加载失败' }
  119. finally { this.loading = false }
  120. },
  121. formatDate(d) { return d ? d.slice(0, 10) : '' },
  122. getImageUrl: function(path) {
  123. if (!path) return ''
  124. if (path.indexOf('http://') === 0 || path.indexOf('https://') === 0) return path
  125. return config.API_BASE_URL + path
  126. },
  127. resolveContentUrls: function(html) {
  128. if (!html) return html
  129. // 将富文本内容中的相对图片路径(/uploads/...)拼接为绝对 URL
  130. return html.replace(/(src|href)=["']\/(uploads\/[^"']+)/g, function(match, attr, path) {
  131. return attr + '="' + config.API_BASE_URL + '/' + path + '"'
  132. })
  133. },
  134. parseDimensions: function(article) {
  135. var dimMap = { body: { code: 'body', color: '#FF8C42', name: '身' }, mind: { code: 'mind', color: '#FF6B9D', name: '心' }, wisdom: { code: 'wisdom', color: '#6366F1', name: '智' }, action: { code: 'action', color: '#10B981', name: '行' }, wealth: { code: 'wealth', color: '#F59E0B', name: '富' } }
  136. var raw = article && article.relatedDimensions ? article.relatedDimensions.split(',').map(function(s) { return s.trim().toLowerCase() }) : []
  137. var weights = null
  138. if (article && article.dimensionWeights) try { var w = JSON.parse(article.dimensionWeights); if (w && typeof w === 'object') weights = w } catch (e) {}
  139. if (!weights) {
  140. var n = raw.filter(function(c) { return dimMap[c] }).length
  141. if (n > 0) { var base = Math.floor(100 / n); var rem = 100 - base * n; weights = {}; var i = 0; raw.forEach(function(c) { if (!dimMap[c]) return; weights[c] = i < rem ? base + 1 : base; i++ }) }
  142. }
  143. return raw.filter(function(c) { return dimMap[c] }).map(function(c) { return { code: dimMap[c].code, name: dimMap[c].name, color: dimMap[c].color, weight: (weights && weights[c]) ? weights[c] : 20 } })
  144. },
  145. getMainDimension: function() {
  146. var dims = this.article ? this.parseDimensions(this.article) : []
  147. var best = null
  148. var i
  149. for (i = 0; i < dims.length; i++) {
  150. if (!best || dims[i].weight > best.weight) best = dims[i]
  151. }
  152. return best ? best.code : ''
  153. },
  154. onScrollToBottom() {},
  155. startNewReadingSession: function() {
  156. // 每次进入文章详情页都从 0 开始新会话,时长不延续上一次
  157. this.readingSeconds = 0
  158. this.lastReportedSeconds = 0
  159. this.startReadingTimer()
  160. },
  161. startReadingTimer: function() {
  162. if (this.isTimerRunning || this.readingCompleted) return
  163. this.isTimerRunning = true
  164. var self = this
  165. this.timerHandle = setInterval(function() { self.readingSeconds++ }, 1000)
  166. // 每 10 秒自动记录一次该用户已读时长
  167. this.syncHandle = setInterval(function() { self.reportReadingTime() }, 10000)
  168. },
  169. pauseReadingTimer: function() {
  170. if (!this.isTimerRunning) return
  171. this.isTimerRunning = false
  172. if (this.timerHandle) { clearInterval(this.timerHandle); this.timerHandle = null }
  173. if (this.syncHandle) { clearInterval(this.syncHandle); this.syncHandle = null }
  174. this.reportReadingTime()
  175. },
  176. async reportReadingTime() {
  177. var delta = this.readingSeconds - this.lastReportedSeconds
  178. if (delta <= 0) return
  179. this.lastReportedSeconds = this.readingSeconds
  180. var memberId = uni.getStorageSync('currentChildId')
  181. if (!memberId || !this.article) return
  182. reportReadingTime({ articleId: this.article.id, memberId: parseInt(memberId), durationSeconds: delta })
  183. // 达到阅读时长自动完成
  184. var targetSeconds = (this.article.readTime || 3) * 60
  185. if (!this.readingCompleted && this.readingSeconds >= targetSeconds) {
  186. this.readingCompleted = true
  187. this.pauseReadingTimer()
  188. try { await completeArticleRead({ articleId: this.article.id, memberId: parseInt(memberId), durationSeconds: this.readingSeconds }) } catch (e) {}
  189. uni.showToast({ title: '阅读完成 +5能量', icon: 'success' })
  190. // 弹出答题
  191. this.startQuiz()
  192. }
  193. },
  194. formatReadingTime: function(seconds) {
  195. if (seconds < 60) return '已读 ' + seconds + '秒'
  196. var min = Math.floor(seconds / 60); var sec = seconds % 60
  197. return '已读 ' + min + '分' + (sec > 0 ? sec + '秒' : '')
  198. },
  199. async generatePoster() {
  200. if (!this.articleId) return
  201. uni.showLoading({ title: '生成海报中...' })
  202. try {
  203. var res = await getShareQrCode('pages/article-center/article-detail', 'id=' + this.articleId)
  204. if (res && res.data) {
  205. this.posterQrCode = res.data.qrCodeBase64 || ''
  206. this.posterDimension = this.getMainDimension()
  207. this.posterSummary = (this.article && this.article.summary) || ''
  208. this.posterInviteText = '「' + (uni.getStorageSync('nickname') || '好友') + '」邀请你一起阅读这篇文章'
  209. this.showPoster = true
  210. }
  211. } catch (e) { uni.showToast({ title: '生成失败', icon: 'none' }) }
  212. finally { uni.hideLoading() }
  213. },
  214. // 答题
  215. async startQuiz() {
  216. try {
  217. var res = await generateQuiz({ articleId: this.articleId })
  218. if (res.code === 200 && res.data && res.data.length > 0) {
  219. this.quizQuestions = res.data
  220. this.quizAnswers = []
  221. this.showQuiz = true
  222. }
  223. } catch (e) {}
  224. },
  225. async submitQuiz() {
  226. var correct = 0
  227. for (var i = 0; i < this.quizQuestions.length; i++) {
  228. if (this.quizAnswers[i] === this.quizQuestions[i].answer) correct++
  229. }
  230. var memberId = uni.getStorageSync('currentChildId')
  231. try {
  232. var res = await submitQuiz({ correctCount: correct, memberId: parseInt(memberId || 0) })
  233. if (res.code === 200) {
  234. this.quizResult = res.data || { correctCount: correct, totalQuestions: 3, earnedEnergy: correct * 5 }
  235. this.showQuiz = false
  236. this.showResult = true
  237. }
  238. } catch (e) {}
  239. },
  240. closePoster: function() {
  241. this.showPoster = false
  242. },
  243. closeQuiz: function() {
  244. this.showQuiz = false
  245. },
  246. closeResult: function() {
  247. this.showResult = false
  248. },
  249. selectQuizAnswer: function(qi, oi) {
  250. this.quizAnswers[qi] = String.fromCharCode(65 + oi)
  251. }
  252. }
  253. }
  254. </script>
  255. <style scoped>
  256. .detail-container { min-height: 100vh; background: #fff; }
  257. .loading-wrap { display: flex; flex-direction: column; align-items: center; padding-top: 300rpx; }
  258. .loading-spinner { width: 60rpx; height: 60rpx; border: 4rpx solid #e0e0e0; border-top-color: #5B9BD5; border-radius: 50%; animation: spin 0.8s linear infinite; margin-bottom: 20rpx; }
  259. @keyframes spin { 0% { transform: rotate(0deg); } 360% { transform: rotate(360deg); } }
  260. .loading-text { font-size: 26rpx; color: #999; }
  261. .error-wrap { display: flex; flex-direction: column; align-items: center; padding-top: 300rpx; }
  262. .error-icon { font-size: 100rpx; margin-bottom: 24rpx; }
  263. .error-text { font-size: 28rpx; color: #999; margin-bottom: 30rpx; }
  264. .retry-btn { width: 240rpx; height: 72rpx; line-height: 72rpx; background: #5B9BD5; color: #fff; font-size: 28rpx; border-radius: 36rpx; text-align: center; border: none; }
  265. .content-scroll { height: calc(100vh - 120rpx); }
  266. .detail-cover { width: 100%; display: block; }
  267. .detail-title { display: block; font-size: 36rpx; font-weight: bold; color: #333; line-height: 1.4; padding: 30rpx 30rpx 0; }
  268. .detail-meta { display: flex; align-items: center; padding: 16rpx 30rpx 0; font-size: 22rpx; color: #999; flex-wrap: wrap; }
  269. .meta-author { color: #5B9BD5; }
  270. .meta-sep { margin: 0 12rpx; color: #ddd; }
  271. .reading-time-badge { margin-left: auto; font-size: 20rpx; color: #5B9BD5; background: rgba(91,155,213,0.08); padding: 4rpx 12rpx; border-radius: 20rpx; white-space: nowrap; }
  272. .reading-time-badge.completed { color: #10B981; background: rgba(16,185,129,0.1); }
  273. .detail-category-row { padding: 16rpx 30rpx 0; }
  274. .detail-category { display: inline-block; font-size: 20rpx; color: #5B9BD5; background: rgba(91,155,213,0.1); padding: 4rpx 16rpx; border-radius: 8rpx; }
  275. .detail-dimensions { padding: 16rpx 30rpx 0; display: flex; gap: 12rpx; }
  276. .dim-bar-item { flex: 1; }
  277. .dim-bar { height: 8rpx; border-radius: 4rpx; }
  278. .dim-label { font-size: 18rpx; color: #999; text-align: center; display: block; margin-top: 4rpx; }
  279. .divider { height: 1rpx; background: #eee; margin: 24rpx 30rpx; }
  280. .detail-body { padding: 0 30rpx; font-size: 28rpx; color: #444; line-height: 1.8; }
  281. .detail-footer { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; padding: 20rpx 30rpx; display: flex; align-items: center; gap: 16rpx; box-shadow: 0 -2rpx 10rpx rgba(0,0,0,0.06); z-index: 10; }
  282. .share-btn { height: 72rpx; width: 72rpx; background: #f5f5f5; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: none; }
  283. .share-btn::after { border: none; }
  284. .share-btn-icon { font-size: 32rpx; }
  285. /* 答题弹窗 */
  286. .quiz-mask, .result-mask { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); z-index: 999; display: flex; align-items: center; justify-content: center; }
  287. .quiz-dialog, .result-dialog { background: #fff; border-radius: 24rpx; width: 650rpx; padding: 32rpx; }
  288. .quiz-mascot { display: flex; align-items: center; justify-content: center; gap: 12rpx; margin-bottom: 16rpx; }
  289. .mascot-icon { font-size: 60rpx; }
  290. .mascot-name { font-size: 32rpx; font-weight: 700; color: #F97316; }
  291. .quiz-intro { text-align: center; font-size: 28rpx; color: #666; margin-bottom: 24rpx; }
  292. .quiz-question { margin-bottom: 20rpx; }
  293. .q-title { font-size: 26rpx; font-weight: 600; color: #333; margin-bottom: 12rpx; }
  294. .q-options { display: flex; flex-direction: column; gap: 8rpx; }
  295. .q-option { padding: 14rpx 20rpx; border: 2rpx solid #E5E7EB; border-radius: 12rpx; font-size: 24rpx; color: #333; }
  296. .q-option.selected { border-color: #F97316; background: #FFF7ED; color: #92400E; }
  297. .quiz-submit, .result-btn { width: 100%; padding: 20rpx; background: linear-gradient(135deg, #F97316, #FB923C); color: #fff; font-size: 28rpx; border-radius: 12rpx; border: none; margin-top: 20rpx; }
  298. .result-dialog { text-align: center; }
  299. .result-icon { font-size: 80rpx; }
  300. .result-text { font-size: 32rpx; font-weight: 700; color: #333; margin: 16rpx 0; }
  301. .result-energy { font-size: 28rpx; color: #F97316; }
  302. </style>