Files

421 lines
12 KiB
Vue
Raw Permalink Normal View History

2025-08-14 15:04:24 +08:00
<template>
<view class="body">
<view v-if="adUnitId" style="width: 94%; margin-left: 3%;">
<ad-custom :unit-id="adUnitId" ad-intervals="30" ></ad-custom>
</view>
<view class="contents">
<view class="videoContent">
<view class="titleContent">
<view class="title-content">
<u--text bold size="18" color="#0081ff" text="视频"></u--text>
</view>
<view class="title-shadow">
<u--text bold color="#0081ff" text="VIDEO"></u--text>
</view>
</view>
<view class="videoContent-video">
<video :src="videoUrl" class="video" @error="videoErrorCallback"></video>
</view>
<view class="videoContent-buttonGroup">
<view class="videoContent-buttonGroup-left">
<u-button @click="copyText(videoUrl)" type="primary" plain text="复制链接"></u-button>
</view>
<view class="videoContent-buttonGroup-right">
<u-button @click="downloadVideo(videoUrl)" type="primary" text="保存视频"></u-button>
</view>
</view>
<view class="videoContent-problem">
<u--text @click="showTips" align="center" type="primary" decoration="underline"
text="下载失败?点我查看解决方案"></u--text>
</view>
</view>
<view class="coverContent">
<view class="titleContent">
<view class="title-content">
<u--text bold size="18" color="#0081ff" text="封面"></u--text>
</view>
<view class="title-shadow">
<u--text bold color="#0081ff" text="COVER"></u--text>
</view>
</view>
<view class="coverContent-image">
<u--image radius="7" mode="widthFix" :src="coverUrl" width="100%" height="auto"></u--image>
</view>
<view class="coverContent-buttonGroup">
<view class="coverContent-buttonGroup-left">
<u-button @click="copyText(coverUrl)" type="primary" plain text="复制链接"></u-button>
</view>
<view class="coverContent-buttonGroup-right">
<u-button @click="downloadImage(coverUrl)" type="primary" text="保存封面"></u-button>
</view>
</view>
</view>
<view class="copywritingContent">
<view class="titleContent">
<view class="title-content">
<u--text bold size="18" color="#0081ff" text="文案"></u--text>
</view>
<view class="title-shadow">
<u--text bold color="#0081ff" text="TITLE"></u--text>
</view>
</view>
<view class="copywritingContent-textarea">
<u--textarea maxlength="180" height="140" v-model="copywriting" placeholder="文案内容"></u--textarea>
</view>
<view class="copywritingContent-button">
<u-button @click="copyText(copywriting)" type="primary" text="复制文案"></u-button>
</view>
</view>
</view>
<u-toast ref="uToast"></u-toast>
</view>
</template>
<script>
// var App = require("@/common.js");
import {
addNewDownloadUrl
} from "@/api/app/index.js"
export default {
data() {
return {
adUnitId:"",
isOpenAd: false,
videoAd_id: "",
videoUrl: "",
audioUrl: "",
coverUrl: "",
copywriting: "",
}
},
onLoad() {
let _this = this;
this.adUnitId = uni.getStorageSync("sysSet").wzinfoAd
uni.getStorage({
key: 'analysisData',
success: function(res) {
console.log(res)
_this.videoUrl = res.data.url
_this.coverUrl = res.data.img
_this.copywriting = res.data.title
}
})
},
methods: {
downloadImage(url) {
let _this = this;
const downloadTask = uni.downloadFile({
url: url.replace('http://', 'https://'), //仅为示例,并非真实的资源
success: (downloadRes) => {
if (downloadRes.statusCode === 200) {
console.log('下载成功');
uni.saveImageToPhotosAlbum({
filePath: downloadRes.tempFilePath,
success() {
uni.hideLoading()
uni.showToast({
icon: "success",
title: "下载成功!"
})
},
fail: function(err) {
uni.hideLoading();
if (err.errMsg === "saveImageToPhotosAlbum:fail:auth denied" ||
err
.errMsg === "saveImageToPhotosAlbum:fail auth deny" || err
.errMsg ===
"saveImageToPhotosAlbum:fail authorize no response"
) {
// 这边微信做过调整,必须要在按钮中触发,因此需要在弹框回调中进行调用
uni.showModal({
title: '提示',
content: '需要您授权保存相册',
showCancel: false,
success: modalSuccess => {
uni.openSetting({
success(settingdata) {
console.log(
"settingdata",
settingdata)
if (settingdata
.authSetting[
'scope.writePhotosAlbum'
]) {
uni.showModal({
title: '提示',
content: '获取权限成功,再次点击图片即可保存',
showCancel: false,
})
} else {
uni.showModal({
title: '提示',
content: '获取权限失败,将无法保存到相册哦~',
showCancel: false,
})
}
},
fail(failData) {
console.log("failData",
failData)
},
complete(finishData) {
console.log(
"finishData",
finishData)
}
})
}
})
}
}
})
}
},
fail: (err) => {
uni.hideLoading()
if (err.errMsg.includes("fail url not in domain list")) {
// App._get("/api/download/addNewDownloadUrl", {
// url: url.replace(/^https?:\/\/(.*?)(:\d+)?\/.*$/, '$1')
// }, res => {
// })
addNewDownloadUrl(url.replace(/^https?:\/\/(.*?)(:\d+)?\/.*$/, '$1')).then(response => {}),
uni.showModal({
title: '提示',
content: '因为微信限制,下载失败,可以通过浏览器链接下载,是否复制链接自行去浏览器下载?',
success: (modalRes) => {
if (modalRes.confirm) {
_this.copyText(url)
}
}
});
} else {
uni.showModal({
title: '提示',
content: '下载失败了',
showCancel: false,
})
}
// console.log(err)
}
});
downloadTask.onProgressUpdate((downloadTaskRes) => {
uni.showLoading({
title: '下载进度' + downloadTaskRes.progress + '%',
mask: true
})
})
},
downloadVideo(url) {
let _this = this;
this.$refs.uToast.show({
type: 'success',
title: '',
message: "下载中,请稍等 ",
icon: false
})
const downloadTask = uni.downloadFile({
url: url.replace('http://', 'https://'), //仅为示例,并非真实的资源
success: (downloadRes) => {
if (downloadRes.statusCode === 200) {
console.log('下载成功');
uni.saveVideoToPhotosAlbum({
filePath: downloadRes.tempFilePath,
success() {
uni.hideLoading()
uni.showToast({
icon: "success",
title: "下载成功!"
})
},
fail: function(err) {
uni.hideLoading();
if (err.errMsg === "saveImageToPhotosAlbum:fail:auth denied" ||
err
.errMsg === "saveImageToPhotosAlbum:fail auth deny" || err
.errMsg ===
"saveImageToPhotosAlbum:fail authorize no response"
) {
// 这边微信做过调整,必须要在按钮中触发,因此需要在弹框回调中进行调用
uni.showModal({
title: '提示',
content: '需要您授权保存相册',
showCancel: false,
success: modalSuccess => {
uni.openSetting({
success(settingdata) {
console.log(
"settingdata",
settingdata)
if (settingdata
.authSetting[
'scope.writePhotosAlbum'
]) {
uni.showModal({
title: '提示',
content: '获取权限成功,再次点击图片即可保存',
showCancel: false,
})
} else {
uni.showModal({
title: '提示',
content: '获取权限失败,将无法保存到相册哦~',
showCancel: false,
})
}
},
fail(failData) {
console.log("failData",
failData)
},
complete(finishData) {
console.log(
"finishData",
finishData)
}
})
}
})
}
}
})
}
},
fail: (err) => {
uni.hideLoading()
if (err.errMsg.includes("fail url not in domain list")) {
// App._get("/api/download/addNewDownloadUrl", {
// url: url.replace(/^https?:\/\/(.*?)(:\d+)?\/.*$/, '$1')
// }, res => {
// })
addNewDownloadUrl(url.replace(/^https?:\/\/(.*?)(:\d+)?\/.*$/, '$1')).then(response => {}),
uni.showModal({
title: '提示',
content: '因为微信限制,下载失败,可以通过浏览器链接下载,是否复制链接自行去浏览器下载?',
success: (modalRes) => {
if (modalRes.confirm) {
_this.copyText(url)
}
}
});
} else {
uni.showModal({
title: '提示',
content: '下载失败了',
showCancel: false,
})
}
// console.log(err)
}
});
downloadTask.onProgressUpdate((downloadTaskRes) => {
uni.showLoading({
title: '下载进度' + downloadTaskRes.progress + '%',
mask: true
})
})
},
videoErrorCallback: function(e) {
// console.log(e)
uni.showModal({
content: e.mp["@warning"],
showCancel: false
})
},
showTips() {
uni.showModal({
showCancel: false,
content: '点击“复制链接”到浏览器打开即可下载推荐使用QQ浏览器打开'
})
},
copyText(text) {
uni.setClipboardData({
data: text,
success: function(res) {
uni.showToast({
title: '复制成功',
});
},
fail() {
uni.showToast({
icon: "error",
title: '复制失败了'
});
}
});
}
}
}
</script>
<style lang="scss">
page {
background-color: $u-bg-color;
}
.ad-show {
width: 100%;
}
.contents {
padding: 20rpx 20rpx;
}
.videoContent,
.coverContent,
.copywritingContent {
margin-top: 30rpx;
padding: 30rpx 20rpx;
box-shadow: 3px 3px 4px rgba(26, 26, 26, 0.2);
background-color: white;
border-radius: 7px;
}
.titleContent {
position: relative;
}
.title-shadow {
position: absolute;
bottom: -20rpx;
font-style: italic;
opacity: 0.4;
padding-left: 10rpx;
}
.video {
width: 100%;
border-radius: 8px;
}
.videoContent-video,
.coverContent-image,
.copywritingContent-textarea {
padding: 0 16rpx;
margin-top: 40rpx;
}
.videoContent-buttonGroup,
.coverContent-buttonGroup,
.copywritingContent-button {
padding-left: 20rpx;
padding-right: 20rpx;
padding-top: 30rpx;
display: flex;
flex-direction: row;
justify-content: space-between;
}
.videoContent-buttonGroup-left,
.videoContent-buttonGroup-right,
.coverContent-buttonGroup-left,
.coverContent-buttonGroup-right {
width: 45%;
box-shadow: 3px 3px 4px rgba(0, 102, 204, 0.2);
}
.videoContent-problem {
margin-top: 30rpx;
}
</style>