fix: 将 admin 改为普通目录

This commit is contained in:
hajimi
2026-07-31 16:39:16 +08:00
parent e7f9328611
commit fdf8022662
592 changed files with 41318 additions and 1 deletions
+26
View File
@@ -0,0 +1,26 @@
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 })
}