上线本子更新(同步更新)

This commit is contained in:
chuzhongzai
2023-01-02 15:59:02 +08:00
parent 69d45dd6ef
commit 77d771f98a
2 changed files with 18 additions and 0 deletions
+14
View File
@@ -116,6 +116,20 @@ const actions = {
ElMessage("查询失败")
})
},
updateGallery(context, link){
axios.post(GalleryManageUrl + "/update", qs.stringify({AuthCode: state.AuthCode, link}))
.then((res) => {
if(res.data.result === 'success' && state.refreshTimer === 0){
setTimeout(() => {
context.dispatch("updateGalleryTasks", "all").then()
}, 5000)
state.refreshTimer = 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'){