From 83c093c4ee204457a73c25c49726ee66928bc209 Mon Sep 17 00:00:00 2001 From: chuzhongzai Date: Sat, 23 Dec 2023 15:33:19 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E9=99=A4=E6=9C=AC=E5=AD=90=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=EF=BC=88=E5=90=8C=E6=AD=A5=E6=9B=B4=E6=96=B0=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Side.vue | 4 ---- src/store/index.js | 14 -------------- 2 files changed, 18 deletions(-) diff --git a/src/components/Side.vue b/src/components/Side.vue index ed3e0c7..47d51b0 100644 --- a/src/components/Side.vue +++ b/src/components/Side.vue @@ -25,7 +25,6 @@ 删除 编辑标签 - 更新 分享 @@ -301,9 +300,6 @@ function disMark(gid, tid){ function downloadTask(link){ window.open(link) } -function updateGallery(link){ - store.dispatch("updateGallery", link) -} function deleteGallery(gid){ store.dispatch("deleteGallery", gid) } diff --git a/src/store/index.js b/src/store/index.js index b93815e..71f9f36 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -72,20 +72,6 @@ const actions = { ElMessage("查询失败") }) }, - updateGallery(context, link){ - axios.post(GalleryManageUrl + "/update", qs.stringify({AuthCode: state.AuthCode, link})) - .then((res) => { - if(res.data.result === 'success' && state.galleryRefreshTimer === 0){ - setTimeout(() => { - context.dispatch("updateGalleryTasks", "all").then() - }, 5000) - state.galleryRefreshTimer = setInterval(() => { - context.dispatch("updateGalleryTasks", "undone").then() - }, 20000) - } - ElMessage(res.data.data) - }) - }, validate(context, AuthCode){ axios.post(BaseUrl + "validate?AuthCode=" + AuthCode).then((res)=>{ if(res.data.result === 'success'){