AI修复建议接口对接

This commit is contained in:
付民康
2025-03-19 21:43:36 +08:00
parent 75d503a96d
commit 6761ce1a49
2 changed files with 70 additions and 57 deletions

View File

@@ -98,15 +98,11 @@ export function getDepencyList(softwareId: string) {
}
// 获取AI修复建议
export function getRepairInfo() {
export function getRepairInfo(data) {
return request({
url: '/api/v1/repo/repair/info',
method: 'POST',
data: {
"current": 1,
"size": 10,
"softwareId": 47
}
data
});
}