feat: 多项功能优化和bug修复

- 修复mockData.js语法错误,恢复项目正常运行
- 优化求职策略详情页拖拽功能,修复重复bug和保存逻辑
- 更新岗位级别名称:初级→普通岗,中级→技术骨干岗,高级→储备干部岗
- 更新个人档案学习时长:我的273小时(100%),班级平均231小时
- 面试模拟页面添加视频锁定界面和背景图片
- 简历面试页面更新模板数据,添加更多岗位简历模板
- React版本降级至18.3.1解决兼容性问题
This commit is contained in:
KQL
2025-09-06 10:06:19 +08:00
parent 4e0e96e6b8
commit 00e8cebfe3
19 changed files with 1344 additions and 394 deletions

View File

@@ -3,6 +3,31 @@
height: 100%;
box-sizing: border-box;
padding: 20px;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
/* 禁止所有图片的拖拽和选中 */
img {
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-webkit-user-drag: none;
-khtml-user-drag: none;
-moz-user-drag: none;
-o-user-drag: none;
pointer-events: none;
}
/* 禁止所有文本选中 */
* {
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
/* 返回按钮样式 */
.back-button-wrapper {
@@ -21,6 +46,7 @@
border: 1px solid #e5e6eb;
border-radius: 6px;
cursor: pointer;
pointer-events: auto;
transition: all 0.3s ease;
font-size: 14px;
font-weight: 500;