Files
teach_sys_Demo/fix_final.sh
KQL 1b964b3886 chore: 更新数据文件和组件优化
主要更新内容:
- 优化UI组件(视频播放器、HR访问模态框、岗位信息展示等)
- 更新数据文件(简历、岗位、项目案例等)
- 添加新的图片资源(面试状态图标等)
- 新增AgentPage等页面组件
- 清理旧的备份文件,提升代码库整洁度
- 优化岗位等级和面试状态的数据结构

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-15 15:55:25 +08:00

18 lines
779 B
Bash
Executable File
Raw 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.

#!/bin/bash
# 修正会展执行助理的时间
sed -i '' '/position: "会展执行助理"/,/实习单位:.*$/{
s/### 实习时间2024.09-2024.10/### 实习时间2023.09-2023.11/
}' src/mocks/resumeInterviewMock.js
# 修正旅游计调专员的时间
sed -i '' '/position: "旅游计调专员"/,/实习单位:.*$/{
s/### 实习时间2024.09-2024.10/### 实习时间2024.05-2024.07/
}' src/mocks/resumeInterviewMock.js
# 修正漫展策划师的公司
sed -i '' '/position: "漫展策划师"/,/实习单位:.*$/{
s/### (四)实习单位:深圳市华奥展览服务有限公司/### (四)实习单位:盐城东拓国际会展服务有限公司/
}' src/mocks/resumeInterviewMock.js
echo "✅ 修正完成"