链接混淆字符串改为动态加载
This commit is contained in:
+18
-2
@@ -120,6 +120,7 @@ const actions = {
|
||||
context.commit("_authed", AuthCode, context)
|
||||
context.dispatch("updateGalleryTasks").then()
|
||||
context.dispatch("updateVideoTasks").then()
|
||||
context.dispatch("loadMaskDomain").then()
|
||||
setInterval(() => {
|
||||
context.dispatch("update").then()
|
||||
}, 30000)
|
||||
@@ -135,6 +136,13 @@ const actions = {
|
||||
else
|
||||
context.dispatch("updateGalleryTasks").then()
|
||||
},
|
||||
loadMaskDomain(context){
|
||||
axios.get(BaseUrl + "maskDomain").then((res) => {
|
||||
if(res.data.result === "success"){
|
||||
context.commit("_setMaskDomain", JSON.parse(res.data.data))
|
||||
}
|
||||
})
|
||||
},
|
||||
searchByLink(context, link){
|
||||
context.commit("_searchByLink", link)
|
||||
},
|
||||
@@ -304,6 +312,9 @@ const mutations = {
|
||||
_setShowType(state, showType){
|
||||
state.showType = showType
|
||||
},
|
||||
_setMaskDomain(state, maskDomain){
|
||||
state.maskDomain = maskDomain
|
||||
},
|
||||
_openHistoryPanel(state){
|
||||
state.isShowHistory = true
|
||||
},
|
||||
@@ -328,8 +339,10 @@ const state = {
|
||||
|
||||
isInclude:false, //是否搜索到任务
|
||||
searchTask:[], //搜索到的任务
|
||||
isShowHistory:false, //是否打开面板
|
||||
showType:"gallery"
|
||||
isShowHistory:false, //是否打开面板
|
||||
showType:"gallery",
|
||||
|
||||
maskDomain:[]
|
||||
}
|
||||
|
||||
const getters = {
|
||||
@@ -390,6 +403,9 @@ const getters = {
|
||||
},
|
||||
showType(state){
|
||||
return state.showType
|
||||
},
|
||||
maskDomain(state){
|
||||
return state.maskDomain
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user