feat: 跟踪管理

This commit is contained in:
TsMask
2023-09-23 10:01:23 +08:00
parent 24df767f3f
commit c627d9f768
4 changed files with 611 additions and 0 deletions

11
src/api/trace/pcap.ts Normal file
View File

@@ -0,0 +1,11 @@
import { request } from '@/plugins/http-fetch';
// 登录方法
export function login(data: Record<string, string>) {
return request({
url: '/securityManagement/v1/login',
method: 'post',
data: data,
whithToken: false,
});
}