feat: 完善项目功能和部署脚本

- 修复页面跳转白屏闪烁问题
- 集成过渡岗位页面(岗位装配中心)
- 添加iframe全屏嵌入(教务系统、就业规划)
- 优化企业资源卡片hover分裂效果
- 添加Windows和macOS快捷部署脚本
- 更新.gitignore忽略测试文件和缓存

🤖 Generated with Claude Code
This commit is contained in:
KQL
2025-12-04 16:03:31 +08:00
parent db6b5627a3
commit b0d2e629d9
9 changed files with 1234 additions and 239 deletions

View File

@@ -138,8 +138,11 @@ export class DetailInterface {
// 填充业务板块
this.renderSegments(company.segments);
// 显示界面
// 显示界面 - 先设置为不可见状态,避免闪烁
this.container.style.opacity = '0';
this.container.style.display = 'block';
// 立即淡入
gsap.to(this.container, {
opacity: 1,
duration: CONFIG.animation.ui.fadeDuration

View File

@@ -51,8 +51,11 @@ export class ListInterface {
this.cardsContainer.appendChild(card);
});
// 显示界面
// 显示界面 - 先设置为不可见状态,避免闪烁
this.container.style.opacity = '0';
this.container.style.display = 'block';
// 立即淡入
gsap.to(this.container, {
opacity: 1,
duration: CONFIG.animation.ui.fadeDuration