Files
online_sys/frontend_智能制造/fix_final.sh
KQL a7242f0c69 Initial commit: 教务系统在线平台
- 包含4个产业方向的前端项目:智能开发、智能制造、大健康、财经商贸
- 已清理node_modules、.yoyo等大文件,项目大小从2.6GB优化至631MB
- 配置完善的.gitignore文件

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

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-12 18:16:55 +08:00

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

#!/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 "✅ 修正完成"