From 6e80bcb3303d5558a579cbbd941ce9e56755388a Mon Sep 17 00:00:00 2001 From: selfrelease Date: Mon, 17 Aug 2026 11:12:52 +0800 Subject: [PATCH] =?UTF-8?q?brand:=20=E5=93=81=E7=89=8C=E5=90=8D=E6=94=B9?= =?UTF-8?q?=E5=9B=9E=E5=AE=89=E8=81=8C=E9=80=9A=EF=BC=8C=E5=85=AC=E5=8F=B8?= =?UTF-8?q?=E5=90=8D=E5=98=89=E9=A9=B0=E8=8B=B1=E6=89=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/HelpModal.tsx | 4 ++-- frontend/src/components/OnboardingGuide.tsx | 2 +- frontend/src/components/layout/PortalLayout.tsx | 2 +- frontend/src/pages/Settings.tsx | 4 ++-- frontend/src/pages/auth/ForgotPassword.tsx | 2 +- frontend/src/pages/auth/Login.tsx | 4 ++-- frontend/src/pages/auth/Register.tsx | 2 +- frontend/src/pages/portal/AutoLogin.tsx | 2 +- frontend/src/pages/portal/PortalLogin.tsx | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/frontend/src/components/HelpModal.tsx b/frontend/src/components/HelpModal.tsx index 71bef98..993c41a 100644 --- a/frontend/src/components/HelpModal.tsx +++ b/frontend/src/components/HelpModal.tsx @@ -296,7 +296,7 @@ const categories: HelpCategory[] = [ { id: 'system-intro', question: '本系统能帮企业做什么?', - answer: '「嘉驰英才」是一站式人力资源管理平台,覆盖员工全生命周期管理,帮助企业高效管理人事业务的同时确保合规运营:\n• 员工管理:入职登记、合同签订、转正调岗、离职解聘\n• 薪税管理:工资计算、个税申报、社保公积金缴纳\n• 考勤管理:排班打卡、加班统计、休假记录、月度报表\n• 合同管理:电子合同、到期提醒、续签流程\n• 风险管控:自动扫描法律风险、合规预警、判赔预测\n• AI 助手:劳动法咨询、智能问答、文档生成', + answer: '「安职通」是一站式人力资源管理平台,覆盖员工全生命周期管理,帮助企业高效管理人事业务的同时确保合规运营:\n• 员工管理:入职登记、合同签订、转正调岗、离职解聘\n• 薪税管理:工资计算、个税申报、社保公积金缴纳\n• 考勤管理:排班打卡、加班统计、休假记录、月度报表\n• 合同管理:电子合同、到期提醒、续签流程\n• 风险管控:自动扫描法律风险、合规预警、判赔预测\n• AI 助手:劳动法咨询、智能问答、文档生成', }, { id: 'compliance', @@ -330,7 +330,7 @@ const categories: HelpCategory[] = [ articles: [ { id: 'what-is', - question: '「嘉驰英才」是什么?', + question: '「安职通」是什么?', answer: '这是一个帮您管理员工、合同、工资和社保的工具。您可以把它理解为一个「人事小助手」,帮您把繁琐的人事工作变得简单。比如:记录员工信息、提醒合同到期、计算工资社保、生成法律文档等。', }, { diff --git a/frontend/src/components/OnboardingGuide.tsx b/frontend/src/components/OnboardingGuide.tsx index e33dfef..eb6833a 100644 --- a/frontend/src/components/OnboardingGuide.tsx +++ b/frontend/src/components/OnboardingGuide.tsx @@ -95,7 +95,7 @@ export default function OnboardingGuide() {
-

欢迎使用嘉驰英才

+

欢迎使用安职通

diff --git a/frontend/src/components/layout/PortalLayout.tsx b/frontend/src/components/layout/PortalLayout.tsx index fe7ecfc..2b0d5c3 100644 --- a/frontend/src/components/layout/PortalLayout.tsx +++ b/frontend/src/components/layout/PortalLayout.tsx @@ -36,7 +36,7 @@ export default function PortalLayout({ children }: { children: React.ReactNode }
- 嘉驰英才 + 安职通
{employee.name && ( diff --git a/frontend/src/pages/Settings.tsx b/frontend/src/pages/Settings.tsx index e22e323..6c1c6fb 100644 --- a/frontend/src/pages/Settings.tsx +++ b/frontend/src/pages/Settings.tsx @@ -656,7 +656,7 @@ function handleAcceptanceExport() { } const resultMap: Record = { pass: '✅通过', fail: '❌失败', partial: '⚠️部分通过', untested: '🚫未测试' } - let md = `# 嘉驰英才 验收测试结果\n\n` + let md = `# 安职通 验收测试结果\n\n` md += `> **导出时间:** ${new Date().toLocaleString('zh-CN')}\n` md += `> **验收人数:** ${keys.length}\n\n` @@ -705,7 +705,7 @@ function handleAcceptanceExport() { md += `\n` } - md += `\n---\n*由嘉驰英才系统自动生成*\n` + md += `\n---\n*由安职通系统自动生成*\n` const blob = new Blob([md], { type: 'text/markdown;charset=utf-8' }) const url = URL.createObjectURL(blob) diff --git a/frontend/src/pages/auth/ForgotPassword.tsx b/frontend/src/pages/auth/ForgotPassword.tsx index f9b753d..021d1a8 100644 --- a/frontend/src/pages/auth/ForgotPassword.tsx +++ b/frontend/src/pages/auth/ForgotPassword.tsx @@ -61,7 +61,7 @@ export default function ForgotPassword() {
- 嘉驰英才 + 安职通
diff --git a/frontend/src/pages/auth/Login.tsx b/frontend/src/pages/auth/Login.tsx index 94f4156..c9fa90a 100644 --- a/frontend/src/pages/auth/Login.tsx +++ b/frontend/src/pages/auth/Login.tsx @@ -91,7 +91,7 @@ export default function Login() { {/* Logo + 品牌名 */}
-
嘉驰英才
+
安职通
嘉驰英才(上海)信息科技有限公司
@@ -133,7 +133,7 @@ export default function Login() { {/* 移动端 Logo */}
- 嘉驰英才 + 安职通
{/* 欢迎语 */} diff --git a/frontend/src/pages/auth/Register.tsx b/frontend/src/pages/auth/Register.tsx index 24cb3d8..c26fc00 100644 --- a/frontend/src/pages/auth/Register.tsx +++ b/frontend/src/pages/auth/Register.tsx @@ -52,7 +52,7 @@ export default function Register() {
- 嘉驰英才 + 安职通
diff --git a/frontend/src/pages/portal/AutoLogin.tsx b/frontend/src/pages/portal/AutoLogin.tsx index 5cb5842..4e3ee50 100644 --- a/frontend/src/pages/portal/AutoLogin.tsx +++ b/frontend/src/pages/portal/AutoLogin.tsx @@ -42,7 +42,7 @@ export default function AutoLogin() {
- 嘉驰英才 — 员工端 + 安职通 — 员工端
{status === 'loading' && ( diff --git a/frontend/src/pages/portal/PortalLogin.tsx b/frontend/src/pages/portal/PortalLogin.tsx index 0e42259..0b5357e 100644 --- a/frontend/src/pages/portal/PortalLogin.tsx +++ b/frontend/src/pages/portal/PortalLogin.tsx @@ -64,7 +64,7 @@ export default function PortalLogin() {
- 嘉驰英才 — 员工端 + 安职通 — 员工端