新增执行用例前端及控制层逻辑

This commit is contained in:
liangdaliang
2025-03-06 11:08:33 +08:00
parent b76a6a16e9
commit bc574d12ff
4 changed files with 46 additions and 18 deletions

View File

@@ -44,3 +44,12 @@ export function delCase(id) {
data: {id}
})
}
// 执行用例
export function runCase(id) {
return request({
url: '/test/case/run',
method: 'post',
data: {id}
})
}