仪评指标联分析模块

This commit is contained in:
BBIT-Kai
2025-09-24 13:59:00 +08:00
parent 0ab82b00d6
commit d2775f60a7
28 changed files with 1106 additions and 181 deletions
+19
View File
@@ -0,0 +1,19 @@
import { pyRequestClient } from '#/api/request';
/**
* 获取已分析的图片列表
*/
export async function refreshTicketImageList() {
return pyRequestClient.get('/llm/getTicketImageList');
}
/**
* 上传图片分析任务
*/
export async function createTicketImageTask(formData: FormData) {
return pyRequestClient.post('/llm/createTicketImageTask', formData, {
headers: {
'Content-Type': 'multipart/form-data',
},
});
}