上线本子更新(同步更新)修改初始排序,与pc端保持一致
This commit is contained in:
+15
-1
@@ -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:[] //伪装域名
|
||||
|
||||
Reference in New Issue
Block a user