修改链接

This commit is contained in:
chuzhongzai 2022-12-28 17:37:08 +08:00
parent 2458d885c3
commit 3712db1b04

View File

@ -4,8 +4,8 @@ import {ElMessage} from "element-plus"
import qs from "qs" import qs from "qs"
import moment from 'moment' import moment from 'moment'
const BaseUrl = "http://downloader.lionwebsite.xyz/" const BaseUrl = "http://downloader.lionwebsite.xyz/"
const GalleryManageUrl = BaseUrl + "GalleryManage/" const GalleryManageUrl = BaseUrl + "GalleryManage"
const VideoManageUrl = BaseUrl + "VideoManage/" const VideoManageUrl = BaseUrl + "VideoManage"
const actions = { const actions = {
updateGalleryTasks(context, type){ updateGalleryTasks(context, type){
@ -136,7 +136,7 @@ const actions = {
}) })
}, },
loadWeekUsedAmount(context){ loadWeekUsedAmount(context){
axios.get(GalleryManageUrl + "weekUsedAmount", { axios.get(GalleryManageUrl + "/weekUsedAmount", {
params: { params: {
AuthCode: state.AuthCode AuthCode: state.AuthCode
} }
@ -272,7 +272,7 @@ const mutations = {
if (url.host === mask['raw']) if (url.host === mask['raw'])
tempLink = task.link.replace(mask['raw'], mask['mask']) tempLink = task.link.replace(mask['raw'], mask['mask'])
}) })
task.download = GalleryManageUrl + "file/" + encodeURI(task.name) + "?link=" + tempLink + "&AuthCode=" + state.AuthCode task.download = GalleryManageUrl + "/file/" + encodeURI(task.name) + "?link=" + tempLink + "&AuthCode=" + state.AuthCode
break; break;
} }
@ -340,7 +340,7 @@ const mutations = {
if (url.host === mask['raw']) if (url.host === mask['raw'])
tempLink = task.link.replace(mask['raw'], mask['mask']) tempLink = task.link.replace(mask['raw'], mask['mask'])
}) })
task.download = VideoManageUrl + "file/" + encodeURI(task.name) + "?link=" + tempLink + "&AuthCode=" + state.AuthCode task.download = VideoManageUrl + "/file/" + encodeURI(task.name) + "?link=" + tempLink + "&AuthCode=" + state.AuthCode
task.createTimeDisplay = moment(task.createTime * 1000).format("YYYY-MM-DD HH:mm:ss") task.createTimeDisplay = moment(task.createTime * 1000).format("YYYY-MM-DD HH:mm:ss")
} }
state.totalVideoTask.push(task) state.totalVideoTask.push(task)
@ -509,7 +509,7 @@ const mutations = {
}, },
_changeThumbnailGallery(state, gallery){ _changeThumbnailGallery(state, gallery){
state.thumbnailGallery = gallery state.thumbnailGallery = gallery
state.thumbnailGallery.url = GalleryManageUrl + "thumbnail/" + encodeURIComponent(gallery.name) + ".webp?AuthCode="+state.AuthCode state.thumbnailGallery.url = GalleryManageUrl + "/thumbnail/" + encodeURIComponent(gallery.name) + ".webp?AuthCode="+state.AuthCode
} }
} }