import request from '@/utils/request' // 爬虫错误日志列表 export function crawlErrorLogLists(params?: any) { return request.get({ url: '/crawler.crawlErrorLog/lists', params }) } // 爬虫错误日志详情 export function crawlErrorLogDetail(params: any) { return request.get({ url: '/crawler.crawlErrorLog/detail', params }) } // 删除爬虫错误日志 export function crawlErrorLogDelete(params: any) { return request.post({ url: '/crawler.crawlErrorLog/delete', params }) } // Docker 爬虫任务日志列表 export function crawlerTaskLogLists(params?: any) { return request.get({ url: '/crawler.taskLog/lists', params }) } // Docker 爬虫任务日志详情 export function crawlerTaskLogDetail(params: any) { return request.get({ url: '/crawler.taskLog/detail', params }) }