article-detail.vue 18 KB

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