用例每个步骤下方需增加历史调用记录展现

This commit is contained in:
liangdaliang
2025-03-17 11:01:21 +08:00
parent c91cbc369c
commit 74f45660f5
2 changed files with 62 additions and 1 deletions

View File

@@ -19,6 +19,15 @@ export function getCaseStep(id) {
})
}
// 查询步骤日志详细
export function getCaseStepResultLog(id) {
return request({
url: '/test/testCaseStepResult/detail',
method: 'post',
data: {id}
})
}
// 新增步骤
export function addCaseStep(data) {
return request({