265 lines
6.3 KiB
Vue
265 lines
6.3 KiB
Vue
<!-- +----------------------------------------------------------------------
|
||
| 麦沃德科技赋能开发者,助力商协会发展
|
||
+----------------------------------------------------------------------
|
||
| Copyright (c) 2017~2024 www.wdsxh.cn All rights reserved.
|
||
+----------------------------------------------------------------------
|
||
| 沃德商协会系统并不是自由软件,不加密,并不代表开源,未经许可不可自由转售和商用
|
||
+----------------------------------------------------------------------
|
||
| Author: MY WORLD Team <bd@maiwd.cn> www.maiwd.cn
|
||
+----------------------------------------------------------------------
|
||
| 平台动态-详情 开发者: 麦沃德科技-半夏
|
||
+---------------------------------------------------------------------- -->
|
||
|
||
<template>
|
||
<view class="container" :style="{'--theme-color': themeColor}">
|
||
<!-- 标题栏 -->
|
||
<title-bar :title="pageTitle || '平台动态'"></title-bar>
|
||
<!-- 内容区 -->
|
||
<view class="container-main" v-if="loadEnd">
|
||
<view class="main-title">{{articleInfo.title}}</view>
|
||
<view class="main-tag flex justify-content-between align-items-center">
|
||
<view class="tag-item flex-item">
|
||
<text class="item-name">{{articleInfo.release}}</text>
|
||
<text class="item-time">{{articleInfo.createtime}}</text>
|
||
</view>
|
||
<view class="tag-item flex align-items-center">
|
||
<image class="item-icon" src="/static/see.png" mode="aspectFit"></image>
|
||
<text class="item-number">{{articleInfo.read_num}}</text>
|
||
</view>
|
||
</view>
|
||
<view class="main-content">
|
||
<mp-html :content="articleInfo.content"></mp-html>
|
||
</view>
|
||
<view class="main-annex">
|
||
<view class="annex-file" v-for="(item, index) in annexList" :key="index" @click="handleDownload(item.file, item.name)">
|
||
<view class="file-name text-ellipsis">{{item.name}}</view>
|
||
<view class="file-btn">下载附件</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
<!-- 底部导航 -->
|
||
<tab-bar></tab-bar>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
import { mapState } from "vuex"
|
||
// #ifdef H5
|
||
import wx from 'weixin-js-sdk';
|
||
// #endif
|
||
export default {
|
||
data() {
|
||
return {
|
||
// 加载完成
|
||
loadEnd: false,
|
||
// 页面标题
|
||
pageTitle: "",
|
||
// 新闻id
|
||
articleId: null,
|
||
// 新闻详情
|
||
articleInfo: {},
|
||
// 附件列表
|
||
annexList: [],
|
||
}
|
||
},
|
||
computed: {
|
||
...mapState({
|
||
themeColor: state => state.app.themeColor,
|
||
shareTitle: state => state.app.shareTitle,
|
||
})
|
||
},
|
||
onLoad(option) {
|
||
this.articleId = option.id
|
||
if (option.title) this.pageTitle = decodeURIComponent(option.title)
|
||
uni.showLoading({
|
||
title: "加载中"
|
||
})
|
||
this.getArticle(() => {
|
||
this.loadEnd = true
|
||
uni.hideLoading()
|
||
// #ifdef H5
|
||
this.initConfig()
|
||
// #endif
|
||
})
|
||
},
|
||
onShareAppMessage() {
|
||
return {
|
||
title: this.articleInfo.title,
|
||
imageUrl: this.articleInfo.image,
|
||
}
|
||
},
|
||
onShareTimeline() {
|
||
return {
|
||
title: this.articleInfo.title,
|
||
imageUrl: this.articleInfo.image,
|
||
}
|
||
},
|
||
methods: {
|
||
// #ifdef H5
|
||
// 微信公众号初始化方法
|
||
initConfig() {
|
||
this.$util.request("main.WeChatConfig", {
|
||
url: location.href.split('#')[0]
|
||
}).then(res => {
|
||
if (res.code == 1) {
|
||
wx.config({
|
||
debug: false,
|
||
appId: res.data.appId,
|
||
timestamp: Number(res.data.timestamp),
|
||
nonceStr: res.data.nonceStr,
|
||
signature: res.data.signature,
|
||
jsApiList: ["updateAppMessageShareData", "updateTimelineShareData"],
|
||
openTagList: ["updateAppMessageShareData", "updateTimelineShareData"],
|
||
})
|
||
wx.ready(() => {
|
||
wx.updateAppMessageShareData({
|
||
title: this.articleInfo.title,
|
||
imageUrl: this.articleInfo.image,
|
||
desc: "",
|
||
link: window.location.href,
|
||
});
|
||
wx.updateTimelineShareData({
|
||
title: this.articleInfo.title,
|
||
imageUrl: this.articleInfo.image,
|
||
link: window.location.href,
|
||
});
|
||
});
|
||
} else {
|
||
uni.hideLoading()
|
||
uni.showToast({
|
||
title: res.msg,
|
||
icon: 'none'
|
||
})
|
||
}
|
||
}).catch(error => {
|
||
uni.hideLoading()
|
||
console.error('通过config接口注入权限验证配置 ', error)
|
||
})
|
||
},
|
||
// #endif
|
||
// 获取文章详情
|
||
getArticle(fn) {
|
||
this.$util.request("main.article.details", {
|
||
id: this.articleId
|
||
}).then(res => {
|
||
if (fn) fn()
|
||
if (res.code == 1) {
|
||
this.articleInfo = res.data
|
||
this.annexList = res.data?.files || []
|
||
} else {
|
||
uni.showToast({
|
||
title: res.msg,
|
||
icon: 'none'
|
||
})
|
||
}
|
||
}).catch(error => {
|
||
if (fn) fn()
|
||
console.error('获取文章详情 ', error)
|
||
})
|
||
},
|
||
// 下载附件
|
||
handleDownload(file, name) {
|
||
if (file) {
|
||
uni.showLoading({
|
||
mask: true,
|
||
title: '加载中',
|
||
})
|
||
this.$util.downloadFile(file, 2, name).then(() => {
|
||
uni.hideLoading()
|
||
}).catch((error) => {
|
||
uni.hideLoading()
|
||
uni.showToast({
|
||
icon: 'none',
|
||
title: error?.errMsg || '附件下载失败',
|
||
})
|
||
})
|
||
} else {
|
||
uni.showToast({
|
||
icon: 'none',
|
||
title: '暂无可下载附件',
|
||
})
|
||
}
|
||
},
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss">
|
||
page {
|
||
background: #ffffff;
|
||
}
|
||
|
||
.container {
|
||
.container-main {
|
||
padding: 32rpx;
|
||
|
||
.main-title {
|
||
font-weight: 600;
|
||
font-size: 36rpx;
|
||
line-height: 60rpx;
|
||
color: #5A5B6E;
|
||
}
|
||
|
||
.main-tag {
|
||
margin-top: 16rpx;
|
||
|
||
.tag-item {
|
||
.item-name {
|
||
color: var(--theme-color);
|
||
font-size: 28rpx;
|
||
line-height: 40rpx;
|
||
}
|
||
|
||
.item-time {
|
||
font-size: 28rpx;
|
||
line-height: 40rpx;
|
||
color: #8D929C;
|
||
margin-left: 16rpx;
|
||
}
|
||
|
||
.item-icon {
|
||
width: 32rpx;
|
||
height: 32rpx;
|
||
margin-left: 16rpx;
|
||
}
|
||
|
||
.item-number {
|
||
margin-left: 8rpx;
|
||
font-size: 28rpx;
|
||
line-height: 40rpx;
|
||
color: #8D929C;
|
||
}
|
||
}
|
||
}
|
||
|
||
.main-content {
|
||
margin-top: 32rpx;
|
||
}
|
||
|
||
.main-annex {
|
||
.annex-file {
|
||
margin-top: 32rpx;
|
||
display: flex;
|
||
align-items: center;
|
||
column-gap: 32rpx;
|
||
border-radius: 16rpx;
|
||
border: 2rpx dashed var(--theme-color);
|
||
padding: 24rpx 32rpx;
|
||
|
||
.file-name {
|
||
flex: 1;
|
||
color: var(--theme-color);
|
||
font-size: 28rpx;
|
||
line-height: 44rpx;
|
||
}
|
||
|
||
.file-btn {
|
||
color: var(--theme-color);
|
||
font-size: 28rpx;
|
||
line-height: 44rpx;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</style> |