This commit is contained in:
张成
2025-12-26 13:12:53 +08:00
parent 6253abc617
commit 6efd77d2b5
3 changed files with 131 additions and 0 deletions

View File

@@ -48,6 +48,15 @@ class ResumeInfoServer {
analyzeWithAI(resumeId) {
return window.framework.http.post('/resume/analyze-with-ai', { resumeId })
}
/**
* 同步在线简历
* @param {String} resumeId - 简历ID
* @returns {Promise}
*/
syncOnline(resumeId) {
return window.framework.http.post('/resume/sync-online', { resumeId })
}
}
export default new ResumeInfoServer()