feat: 跟踪任务功能详情文件页面

This commit is contained in:
TsMask
2024-09-06 16:12:33 +08:00
parent 757f2ec20a
commit ddd8930af4
4 changed files with 233 additions and 53 deletions

View File

@@ -50,3 +50,16 @@ export function stopTaskHLR(data: Record<string, any>) {
data: data,
});
}
/**
* 跟踪任务文件
* @param data 对象
* @returns object
*/
export function fileTaskHLR(data: Record<string, any>) {
return request({
url: '/trace/task/hlr/file',
method: 'post',
data: data,
});
}