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.
117 lines
2.9 KiB
117 lines
2.9 KiB
<template>
|
|
<view v-if="!isLoading" class="container b-f p-b">
|
|
<view class="article-title">
|
|
<text class="f-32">{{ detail.title }}</text>
|
|
</view>
|
|
<view class="article-little dis-flex flex-x-between m-top10">
|
|
<view class="article-little__left">
|
|
<text class="article-views f-24 col-8">{{ detail.show_views }}次浏览</text>
|
|
</view>
|
|
<view class="article-little__right">
|
|
<text class="article-views f-24 col-8">{{ detail.view_time }}</text>
|
|
</view>
|
|
</view>
|
|
<view class="article-content m-top20">
|
|
<mp-html :content="detail.content" />
|
|
</view>
|
|
<!-- 快捷导航 -->
|
|
<shortcut />
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import WxofficialMixin from '@/core/mixins/wxofficial'
|
|
import Shortcut from '@/components/shortcut'
|
|
import * as ArticleApi from '@/api/article'
|
|
|
|
export default {
|
|
components: {
|
|
Shortcut
|
|
},
|
|
mixins: [WxofficialMixin],
|
|
data() {
|
|
return {
|
|
// 当前文章ID
|
|
articleId: null,
|
|
// 加载中
|
|
isLoading: true,
|
|
// 当前文章详情
|
|
detail: null
|
|
}
|
|
},
|
|
|
|
/**
|
|
* 生命周期函数--监听页面加载
|
|
*/
|
|
onLoad(options) {
|
|
// 记录文章ID
|
|
this.articleId = options.articleId
|
|
// 获取文章详情
|
|
this.getArticleDetail()
|
|
},
|
|
|
|
methods: {
|
|
|
|
// 获取文章详情
|
|
getArticleDetail() {
|
|
const app = this
|
|
app.isLoading = true
|
|
ArticleApi.detail(app.articleId)
|
|
.then(result => {
|
|
app.detail = result.data.detail
|
|
// 设置微信公众号链接分享卡片内容
|
|
app.setWxofficialShareData()
|
|
})
|
|
.finally(() => app.isLoading = false)
|
|
},
|
|
|
|
// 设置微信公众号链接分享卡片内容
|
|
setWxofficialShareData() {
|
|
const app = this
|
|
app.updateShareCardData({ title: app.detail.title })
|
|
},
|
|
|
|
},
|
|
|
|
/**
|
|
* 分享当前页面
|
|
*/
|
|
onShareAppMessage() {
|
|
const app = this
|
|
// 构建页面参数
|
|
const params = app.$getShareUrlParams({ articleId: app.articleId });
|
|
return {
|
|
title: app.detail.title,
|
|
path: "/pages/article/detail?" + params
|
|
}
|
|
},
|
|
|
|
/**
|
|
* 分享到朋友圈
|
|
* 本接口为 Beta 版本,暂只在 Android 平台支持,详见分享到朋友圈 (Beta)
|
|
* https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share-timeline.html
|
|
*/
|
|
onShareTimeline() {
|
|
const app = this
|
|
// 构建页面参数
|
|
const params = app.$getShareUrlParams({ articleId: app.articleId });
|
|
return {
|
|
title: app.detail.title,
|
|
path: "/pages/article/detail?" + params
|
|
}
|
|
}
|
|
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.container {
|
|
min-height: 100vh;
|
|
padding: 20rpx;
|
|
background: #fff;
|
|
}
|
|
|
|
.article-content {
|
|
font-size: 28rpx;
|
|
}
|
|
</style> |