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:
KQL
2025-10-15 15:55:25 +08:00
parent 3a054c4208
commit 1b964b3886
221 changed files with 110366 additions and 64316 deletions

View File

@@ -1,15 +1,20 @@
.company-jobs-page-wrapper {
width: 100%;
height: calc(100vh - 60px);
box-sizing: border-box;
padding: 20px;
position: relative;
background-color: #f5f5f5;
display: flex;
flex-direction: column;
.company-jobs-page {
flex: 1;
display: flex;
justify-content: space-between;
align-items: center;
align-items: stretch;
position: relative;
min-height: 0;
.company-jobs-page-spin {
margin: 200px 500px;
@@ -42,7 +47,9 @@
.company-jobs-page-left {
width: 570px;
height: 860px;
height: 100%;
min-height: 860px;
max-height: calc(100vh - 100px);
border-radius: 8px;
background-color: #fff;
display: flex;
@@ -97,17 +104,20 @@
.company-jobs-page-left-list-wrapper {
width: 100%;
height: 760px;
flex: 1;
min-height: 0;
overflow: auto;
}
}
.company-jobs-page-interview-wrapper {
width: 572px;
height: 860px;
height: 100%;
min-height: 860px;
max-height: calc(100vh - 100px);
display: flex;
flex-direction: column;
justify-content: space-between;
justify-content: flex-start;
align-items: center;
position: relative;
@@ -118,18 +128,20 @@
.company-jobs-page-interview {
width: 100%;
height: 860px;
margin-bottom: 20px;
height: 100%;
box-sizing: border-box;
padding: 20px;
background-color: #ffffff;
position: relative;
border-radius: 8px;
border-bottom: 1px solid #e5e6eb;
display: flex;
flex-direction: column;
.company-jobs-page-interview-list {
width: 540px;
height: 760px;
flex: 1;
min-height: 0;
overflow-y: auto;
display: flex;
justify-content: flex-start;