fix: 修复产品徽标不一致和NovaVis独立产品页Server Error
- 统一ERP/CRM的category从"企业旗舰系列"改为"企业套装" - 创建缺失的standalone-products.ts,修复NovaVis页面500错误 - StandaloneProduct接口定义(features/useCases/previewFeatures)
This commit is contained in:
@@ -63,7 +63,7 @@ export const PRODUCTS: Product[] = [
|
||||
title: '睿新ERP管理系统',
|
||||
description: '打通财务、采购、销售、库存、生产全链路,让各部门数据实时流转、业务流程自动协同。',
|
||||
image: '/images/products/erp.jpg',
|
||||
category: '企业旗舰系列',
|
||||
category: '企业套装',
|
||||
categoryId: 'enterprise',
|
||||
tags: ['ERP', '资源管理', '全链路'],
|
||||
status: '研发中',
|
||||
@@ -124,7 +124,7 @@ export const PRODUCTS: Product[] = [
|
||||
title: '睿新客户关系管理系统',
|
||||
description: '从线索到成交的全流程可视化管理,让销售团队清楚每一步该做什么、每个机会卡在哪里。',
|
||||
image: '/images/products/crm.jpg',
|
||||
category: '企业旗舰系列',
|
||||
category: '企业套装',
|
||||
categoryId: 'enterprise',
|
||||
tags: ['CRM', '客户管理', '销售漏斗'],
|
||||
status: '研发中',
|
||||
|
||||
@@ -0,0 +1,75 @@
|
||||
/**
|
||||
* 独立产品(专业产品区)数据定义
|
||||
* HSI架构中 Independent 层的自成体系产品线
|
||||
*/
|
||||
|
||||
export interface PreviewFeature {
|
||||
title: string;
|
||||
description: string;
|
||||
}
|
||||
|
||||
export interface UseCase {
|
||||
title: string;
|
||||
description: string;
|
||||
}
|
||||
|
||||
export interface StandaloneProduct {
|
||||
id: string;
|
||||
title: string;
|
||||
description: string;
|
||||
image: string;
|
||||
category: 'security' | 'specialized-software' | 'hardware';
|
||||
badge: string;
|
||||
status: 'beta' | 'coming-soon' | 'active';
|
||||
heroThemeId: string;
|
||||
features: string[];
|
||||
useCases: UseCase[];
|
||||
previewFeatures: PreviewFeature[];
|
||||
expectedLaunch?: string;
|
||||
}
|
||||
|
||||
export const STANDALONE_PRODUCTS: StandaloneProduct[] = [
|
||||
{
|
||||
id: 'novavis',
|
||||
title: '睿视 NovaVis',
|
||||
description: '面向执法机关的新一代智能数据分析平台,完全离线运行,AI驱动分析,百万级数据秒级响应。',
|
||||
image: '/images/products/novavis.jpg',
|
||||
category: 'security',
|
||||
badge: '专业工具系列',
|
||||
status: 'beta',
|
||||
heroThemeId: 'novavis',
|
||||
features: [
|
||||
'完全离线运行:零网络依赖,断网可用,金融级加密存储,U盘可携带即插即用',
|
||||
'AI 智能分析引擎:异常交易自动识别与预警、智能团伙分群与风险画像、可选配本地大语言模型',
|
||||
'智能关系网络图谱:自动识别人物关系与资金往来,团伙结构自动分析与层级梳理,关键人物智能定位',
|
||||
'全链路资金追踪:支持 20 层以上深度追踪,异常交易模式自动标注,闭环转账与资金归集识别',
|
||||
'一键报告生成:PDF / Word 双格式输出,自定义报告模板,分析过程全留痕,满足执法证据要求',
|
||||
],
|
||||
useCases: [
|
||||
{
|
||||
title: '经济犯罪侦查',
|
||||
description: '快速梳理涉案资金流向,识别异常交易模式,锁定关键嫌疑人',
|
||||
},
|
||||
{
|
||||
title: '反腐败调查',
|
||||
description: '分析公职人员及其关联人员的资金往来,发现利益输送线索',
|
||||
},
|
||||
{
|
||||
title: '涉黑涉恶打击',
|
||||
description: '构建团伙关系网络,识别组织结构和资金链条,支撑精准打击',
|
||||
},
|
||||
{
|
||||
title: '反洗钱分析',
|
||||
description: '追踪跨账户资金转移路径,识别分层、拆分等洗钱手法',
|
||||
},
|
||||
],
|
||||
previewFeatures: [
|
||||
{ title: '完全离线运行', description: '零网络依赖,断网可用,金融级加密存储' },
|
||||
{ title: 'AI 智能分析', description: '异常交易自动识别与预警,智能团伙分群' },
|
||||
{ title: '关系网络图谱', description: '自动识别人物关系与资金往来,关键人物定位' },
|
||||
{ title: '全链路资金追踪', description: '支持 20 层以上深度追踪,异常模式标注' },
|
||||
{ title: '一键报告生成', description: 'PDF/Word 双格式输出,分析过程全留痕' },
|
||||
{ title: '百万级秒级响应', description: '百万级记录秒级处理,效率提升 10 倍以上' },
|
||||
],
|
||||
},
|
||||
] as const;
|
||||
Reference in New Issue
Block a user