This commit is contained in:
张成
2025-12-25 22:11:34 +08:00
parent c6c78d0c43
commit 7ee92b8905
26 changed files with 27282 additions and 1706 deletions

View File

@@ -39,6 +39,15 @@ class ResumeInfoServer {
del(row) {
return window.framework.http.post('/resume/delete', { resumeId: row.resumeId || row.id })
}
/**
* AI 分析简历
* @param {String} resumeId - 简历ID
* @returns {Promise}
*/
analyzeWithAI(resumeId) {
return window.framework.http.post('/resume/analyze-with-ai', { resumeId })
}
}
export default new ResumeInfoServer()