带文件拖动上传的新版简历上传功能,独立文件操作组件,简历列表页和个人资料页有调用

This commit is contained in:
2026-05-26 19:20:34 +08:00
parent 4b16341f92
commit 8b6d424b2f
10 changed files with 582 additions and 87 deletions
+1 -1
View File
@@ -116,7 +116,7 @@ async function loadCompletedList() {
/** 移除岗位 — 调用 cancelApplyJob 接口并通知父组件 */
async function removeJob(job: JobListItem) {
try {
await cancelApplyJob(Number(job.id))
await cancelApplyJob(job.id)
emit('removed', job.id)
ElMessage.success('已移除')
} catch {