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>
This commit is contained in:
14
frontend_智能开发/check_structure.py
Normal file
14
frontend_智能开发/check_structure.py
Normal file
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env python3
|
||||
import re
|
||||
|
||||
with open('src/mocks/resumeInterviewMock.js', 'r', encoding='utf-8') as f:
|
||||
content = f.read()
|
||||
|
||||
# 检查所有行业键的结构
|
||||
lines = content.split('\n')
|
||||
for i, line in enumerate(lines[1820:1840]): # resumeTemplates附近
|
||||
print(f"{i+1821}: {line}")
|
||||
|
||||
print("\n检查第6510-6520行:")
|
||||
for i, line in enumerate(lines[6509:6520]):
|
||||
print(f"{i+6510}: {line}")
|
||||
Reference in New Issue
Block a user