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.

210 lines
5.1 KiB

<template>
2 years ago
<view>
<image class="banner" :src="form.bannerImg" mode="widthFix"></image>
<view class="wrap">
<view class="title">{{ form.title }}</view>
<view class="metas">
<template v-if="isInfo">
<view class="meta">{{ form.source }}</view>
<view class="meta">{{ form.releaseTime }}</view>
</template>
<view v-else class="meta">
<uni-icons class="icon" type="eye" size="22" color="#007FFF"></uni-icons>
{{ form.totalBrowsing }}人学过
</view>
<view v-if="form.labelNameList" class="labels">
<view v-for="(label, j) in form.labelNameList" :key="j" class="label">{{ label }}</view>
</view>
</view>
2 years ago
<view class="text">
<u-parse :content="form.mainBody" ></u-parse>
2 years ago
</view>
2 years ago
<view v-if="form.fileList" class="files">
<view v-for="(file, i) in form.fileList" :key="i" class="item" @click="download(file)">
<view class="file">{{ file.fileName }}</view>
<view class="download">下载</view>
</view>
</view>
</view>
</view>
</template>
<script>
import { findById } from '@/apis/modules/article.js'
2 years ago
import uParse from '@/components/gaoyia-parse/parse.vue'
export default {
data() {
return {
id: '',
2 years ago
isInfo: 0, // 是否从资讯进来(学习详情跟资讯详情公用这个页面)
form: {
totalBrowsing: ''
}
}
},
components: {
uParse
},
onShow() {
const pages = getCurrentPages()
const { options } = pages[pages.length - 1]
this.id = options.id
2 years ago
this.isInfo = options.info
this.getInfo()
},
methods: {
// 获取详情
getInfo() {
uni.showLoading({
title: '加载中'
})
findById(this.id).then(({ message }) => {
const str = message.mainBody
const newStyle = 'width: 85% !important; height: auto;';
const regex = /(<img[^>]*?\s+style=")([^"]*)("[^>]*?>)/g;
const newStr = str.replace(regex, `$1${newStyle}$3`);
2 years ago
// const brStr = str.replace(/\r\n/g,"<br />")
const videoStr = this.replaceAllVideoTagStyles(newStr, "width: 95%; height: 450rpx;display: block;margin:0 auto")
const imgStr = videoStr.replace(regex, `$1${newStyle}$3`);
2 years ago
message.mainBody = imgStr
this.form = message
uni.hideLoading()
}).catch(e => {
uni.hideLoading()
})
},
getAllVideoTagIndices(str) {
const regex = /<video.*?>.*?<\/video>/gs;
const indices = [];
let match;
while ((match = regex.exec(str)) !== null) {
indices.push(match.index);
}
return indices;
},
// 将字符串中指定位置的video标签的style属性替换为新的样式
replaceVideoTagStyle(str, index, newStyle) {
const startIndex = str.indexOf("<video", index);
const endIndex = str.indexOf("</video>", startIndex) + 7;
const videoTag = str.substring(startIndex, endIndex);
const newVideoTag = videoTag.replace(/style="(.*?)"/, `style="${newStyle}"`);
return str.substring(0, startIndex) + newVideoTag + str.substring(endIndex);
},
// 将字符串中所有video标签的style属性替换为新的样式
replaceAllVideoTagStyles(str, newStyle) {
const indices = this.getAllVideoTagIndices(str);
let newStr = str;
for (let i = indices.length - 1; i >= 0; i--) {
newStr = this.replaceVideoTagStyle(newStr, indices[i], newStyle);
}
return newStr;
2 years ago
},
2 years ago
// 下载附件
download(item) {
2 years ago
this.$util.to(`../send/send?url=${item.filePath}&copyWriting=${item.fileName}`)
2 years ago
// uni.showLoading({
// title: '正在下载...',
// mask: true
// })
// const url = item.filePath
// const that = this
// // 下载文件资源到本地
// uni.downloadFile({
// url,
// success: function(res) {
// console.log(444, res)
// uni.saveFile({
// tempFilePath: res.tempFilePath,
// success: function(res) {
// console.log(555, res)
// uni.hideLoading()
// that.$util.sucMsg('文件已保存!')
// }
// })
// },
// fail: function(err) {
// uni.hideLoading()
// }
// })
}
}
}
</script>
<style scoped lang="scss">
@import url("/components/gaoyia-parse/parse.css");
.wrap {
padding: 30rpx;
background-color: #fff;
}
2 years ago
.banner {
width: 100%;
}
.title {
2 years ago
font-size: 34rpx;
font-weight: 600;
color: #333;
}
.metas {
display: flex;
justify-content: space-between;
margin: 20rpx 0;
.labels {
display: inline-flex;
align-items: center;
2 years ago
flex-wrap: wrap;
margin: 15rpx;
}
.label {
padding: 2px 6px;
2 years ago
margin: 0 20rpx 15rpx 0;
font-size: 24rpx;
color: #fff;
background-color: #ccc;
border-radius: 4px;
}
.meta {
display: inline-flex;
align-items: center;
2 years ago
white-space: nowrap;
2 years ago
font-size: 24rpx;
color: #ccc;
}
.icon {
margin-right: 8rpx;
}
}
.text {
font-size: 28rpx;
line-height: 1.6;
2 years ago
p{
width: 100%;
2 years ago
2 years ago
}
img,image{
width: 100% !important;
}
}
2 years ago
.files {
margin-top: 20rpx;
.item {
display: flex;
align-items: center;
margin-bottom: 20rpx;
}
.file {
margin-right: 20rpx;
font-size: 26rpx;
color: #5a5a5a;
}
.download {
font-size: 26rpx;
color: #007EFF;
}
}
</style>