Files
jiaowu-test/src/pages/JobStrategyDetailPage/components/CurvedEmployment/index.jsx
KQL 63f8cf2e7d chore: 迁移项目到新仓库并整理代码
- 更新多个组件的功能优化
- 整理简历映射数据
- 优化视频播放和面试模拟相关组件
- 更新就业策略和公司职位页面

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-24 18:42:25 +08:00

16 lines
536 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from "react";
import CHARTIMG from "@/assets/images/JobStrategyDetailPage/bar_chart.png";
import Locked from "@/components/Locked";
import "./index.css";
export default ({ locked = true }) => {
return (
<div className="curved-employment-wrapper">
<img src={CHARTIMG} style={locked ? { filter: 'blur(10px)' } : {}} />
{locked && (
<Locked text="该板块将在「垂直能力提升」阶段开放完成线上1V1求职策略定制后解锁" showBackground={false} />
)}
</div>
);
};