add:性能测试-报告

This commit is contained in:
2025-04-17 17:29:59 +08:00
committed by 温若烈酒慕茶凉丷
parent 62f9dd359f
commit 03144f2a7b
8 changed files with 258 additions and 10 deletions

View File

@@ -45,6 +45,14 @@ export function getTestCaseList(query) {
})
}
// 测试-详情
export function getTestDetail(query) {
return request({
url: 'test/performanceTest/' + query,
method: 'get',
})
}
//测试-编辑
export function editTest(data) {
return request({

View File

@@ -0,0 +1 @@
import request from '@/utils/request'