上线本子更新(同步更新)修改初始排序,与pc端保持一致

This commit is contained in:
chuzhongzai
2023-01-02 15:58:49 +08:00
parent ca9c7700fa
commit 9f30e27677
2 changed files with 19 additions and 1 deletions
+15 -1
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'){
@@ -577,7 +591,7 @@ const state = {
searchTask:[], //搜索到的任务
isShowHistory:false, //是否打开面板
showType:"gallery", //展示类型
sortType:"name", //排序类型
sortType:"shortName", //排序类型
weekUsed:{}, //每周用量
maskDomain:[] //伪装域名