Files
zeling_f/mock/resume.ts
2026-03-17 14:30:02 +08:00

19 lines
527 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 简历相关 Mock
*
* 以下接口已接入真实后端 192.168.0.55:8080通过 proxy 转发:
* - GET /api/resume/student/templates 模板列表
* - POST /api/resume/student/ai/generate AI生成简历
*
* 以下仅保留尚未对接真实接口的 mock。
*/
const generatedResumes: any[] = [];
export default {
// 获取我的简历列表(暂无真实接口)
'GET /api/resume/mine': (_req: any, res: any) => {
res.json({ code: 0, data: generatedResumes, message: 'ok' });
},
};