This commit is contained in:
2026-03-06 16:50:46 +08:00
commit 0704be4c9f
249 changed files with 46365 additions and 0 deletions

17
api/history.js Normal file
View File

@@ -0,0 +1,17 @@
import { request } from './request'
// 历史列表
const historyList = (params) => {
return request('/MatchScan/historyList', params, 'POST')
}
// 查询单个历史详情
const getTaskName = (params) => {
return request('/MatchScan/taskNameHistory', params, 'POST')
}
export {
historyList,
getTaskName
}