145 lines
3.9 KiB
TypeScript
145 lines
3.9 KiB
TypeScript
// 创建产品数据
|
|
import type { Product } from '@/api/products/products';
|
|
|
|
export const products: Product[] = [
|
|
{
|
|
id: 'basic',
|
|
name: '基础版',
|
|
title: 'AI基础解决方案',
|
|
description: '适合个人用户和小型团队的入门级AI工具',
|
|
highlight: '性价比之选',
|
|
features: [
|
|
{
|
|
icon: 'MagicStick',
|
|
title: '基础模型',
|
|
description: '使用我们的基础AI模型完成日常任务',
|
|
},
|
|
{
|
|
icon: 'Clock',
|
|
title: '快速响应',
|
|
description: '平均响应时间在2秒以内',
|
|
},
|
|
{
|
|
icon: 'Lock',
|
|
title: '基础安全',
|
|
description: '标准数据加密和保护措施',
|
|
},
|
|
],
|
|
pricing: [
|
|
{
|
|
name: '月付',
|
|
price: 99,
|
|
period: '月',
|
|
features: ['1000次请求/月', '基础模型访问', '标准支持'],
|
|
},
|
|
{
|
|
name: '年付',
|
|
price: 899,
|
|
period: '年',
|
|
features: ['12000次请求/年', '基础模型访问', '标准支持', '节省15%'],
|
|
},
|
|
],
|
|
faqs: [
|
|
{
|
|
question: '基础版适合哪些用户?',
|
|
answer: '适合个人开发者、小型团队或想尝试AI技术的用户。',
|
|
},
|
|
{
|
|
question: '超出请求次数会怎样?',
|
|
answer: '超出后可以按需购买额外请求包或升级到更高版本。',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
id: 'pro',
|
|
name: '专业版',
|
|
title: 'AI专业解决方案',
|
|
description: '为企业和专业开发者设计的高级AI工具集',
|
|
highlight: '最受欢迎',
|
|
features: [
|
|
{
|
|
icon: 'Cpu',
|
|
title: '高级模型',
|
|
description: '使用我们最先进的AI模型获得更好结果',
|
|
},
|
|
{
|
|
icon: 'DataLine',
|
|
title: '数据分析',
|
|
description: '内置数据分析工具和可视化',
|
|
},
|
|
{
|
|
icon: 'User',
|
|
title: '优先支持',
|
|
description: '专属客户经理和技术支持',
|
|
},
|
|
],
|
|
pricing: [
|
|
{
|
|
name: '月付',
|
|
price: 299,
|
|
period: '月',
|
|
features: ['5000次请求/月', '高级模型访问', '优先支持', '数据分析工具'],
|
|
},
|
|
{
|
|
name: '年付',
|
|
price: 2599,
|
|
period: '年',
|
|
features: ['60000次请求/年', '高级模型访问', '专属客户经理', '节省25%', '数据分析工具'],
|
|
isPopular: true,
|
|
},
|
|
],
|
|
faqs: [
|
|
{
|
|
question: '专业版有什么额外功能?',
|
|
answer: '包含高级模型访问、数据分析工具和优先支持服务。',
|
|
},
|
|
{
|
|
question: '可以定制请求次数吗?',
|
|
answer: '可以联系我们定制适合您业务需求的套餐。',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
id: 'enterprise',
|
|
name: '企业版',
|
|
title: 'AI企业解决方案',
|
|
description: '为大型组织设计的全方位AI平台',
|
|
highlight: '全面定制',
|
|
features: [
|
|
{
|
|
icon: 'Setting',
|
|
title: '完全定制',
|
|
description: '根据您的需求定制AI模型和工作流',
|
|
},
|
|
{
|
|
icon: 'OfficeBuilding',
|
|
title: '专属部署',
|
|
description: '支持私有化部署和专属云服务',
|
|
},
|
|
{
|
|
icon: 'Service',
|
|
title: '专属团队',
|
|
description: '我们的工程师团队为您提供专属支持',
|
|
},
|
|
],
|
|
pricing: [
|
|
{
|
|
name: '定制方案',
|
|
price: 0,
|
|
period: '',
|
|
features: ['无限请求', '完全定制模型', '私有化部署', '专属支持团队', 'SLA保障'],
|
|
},
|
|
],
|
|
faqs: [
|
|
{
|
|
question: '企业版如何定价?',
|
|
answer: '根据您的具体需求定制价格,请联系我们的销售团队获取报价。',
|
|
},
|
|
{
|
|
question: '支持私有化部署吗?',
|
|
answer: '是的,我们支持完全的私有化部署以满足企业安全需求。',
|
|
},
|
|
],
|
|
},
|
|
];
|