add: 性能测试-报告

This commit is contained in:
2025-04-21 10:54:16 +08:00
committed by 温若烈酒慕茶凉丷
parent f677776c31
commit 97e74dd4ca
6 changed files with 220 additions and 66 deletions

View File

@@ -68,4 +68,12 @@ export function editAndExecuteTest(data) {
method: 'put',
data: data
})
}
}
// 测试-编辑-立即执行
export function executeTest(query) {
return request({
url: '/test/performanceTest/executeNow?' + query,
method: 'get',
})
}

View File

@@ -1 +1,26 @@
import request from '@/utils/request'
import request from '@/utils/request'
// 报告-列表查询
export function getReportList(query) {
return request({
url: '/test/performanceReport//list',
method: 'get',
params: query
})
}
// 报告-列表删除
export function deleteReport(data) {
return request({
url: '/test/performanceReport/delete/' + data,
method: 'put',
data: data
})
}
// 报告-详情
export function getReportDetail(query) {
return request({
url: '/test/performanceReport/getInfo/' + query,
method: 'get',
})
}