added batch run tasks

This commit is contained in:
marvzhang
2020-07-17 15:54:59 +08:00
parent 23166275e2
commit 0131035449
5 changed files with 351 additions and 6 deletions

View File

@@ -32,7 +32,9 @@ const state = {
activeErrorLogItem: {},
// results
resultsPageNum: 1,
resultsPageSize: 10
resultsPageSize: 10,
// batch crawl
batchCrawlList: []
}
const getters = {
@@ -144,6 +146,12 @@ const mutations = {
},
SET_ACTIVE_ERROR_LOG_ITEM(state, value) {
state.activeErrorLogItem = value
},
SET_BATCH_CRAWL_LIST(state, value) {
state.batchCrawlList = value
},
SET_IS_BATCH_CRAWL_DIALOG_VISIBLE(state, value) {
state.isBatchCrawlDialogVisible = value
}
}