chore: 更新数据文件和组件优化
主要更新内容: - 优化UI组件(视频播放器、HR访问模态框、岗位信息展示等) - 更新数据文件(简历、岗位、项目案例等) - 添加新的图片资源(面试状态图标等) - 新增AgentPage等页面组件 - 清理旧的备份文件,提升代码库整洁度 - 优化岗位等级和面试状态的数据结构 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
15
check_partial.js
Normal file
15
check_partial.js
Normal file
@@ -0,0 +1,15 @@
|
||||
// 测试部分文件
|
||||
const fs = require('fs');
|
||||
|
||||
const content = fs.readFileSync('src/mocks/resumeInterviewMock.js', 'utf8');
|
||||
const lines = content.split('\n');
|
||||
|
||||
// 只取到第6520行
|
||||
const partialContent = lines.slice(0, 6520).join('\n');
|
||||
|
||||
// 添加假的结束来测试语法
|
||||
const testContent = partialContent + '\n\nconst testEnd = {};';
|
||||
|
||||
fs.writeFileSync('temp_test.js', testContent);
|
||||
|
||||
console.log('创建了temp_test.js用于测试前6520行的语法');
|
||||
Reference in New Issue
Block a user