Files
Yi.Framework/Yi.Ai.Vue3/src/data/products.ts
2025-06-29 14:42:10 +08:00

85 lines
2.4 KiB
TypeScript
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.
// src/data/products.ts
import { CircleCheck } from '@element-plus/icons-vue';
export const products = [
{
id: 'yixinai',
name: '意心AI',
title: '全站AI模型直连支持',
description: '基础模型 + 高级模型 + 超级加速,一次订阅全部享受。',
highlight: '市面罕见直连站点 · 不限速 · 无套路',
features: [
{
icon: CircleCheck,
title: '基础与高级模型支持',
description: '支持GPT-4、Claude、Gemini、通义千问、讯飞星火等国内外AI模型',
},
{
icon: CircleCheck,
title: '不限次数使用',
description: '在合理日常范围内畅享无限调用',
},
{
icon: CircleCheck,
title: 'AI超级加速',
description: '全平台加速支持,响应时间快人一步',
},
],
pricing: [
{
name: 'VIP',
price: 49.9,
period: '终身',
isPopular: false,
features: [
'基础+高级模型访问',
'AI超级加速',
'无限制使用',
'售后微信群支持',
'可用29.9元优惠券',
],
},
{
name: 'VIP + 邀请1人',
price: 29.9,
period: '每人',
isPopular: true,
features: [
'基础+高级模型访问',
'AI超级加速',
'无限制使用',
'售后微信群支持',
'不支持优惠券',
],
},
{
name: 'VIP + 支持站长',
price: 69.9,
period: '终身',
isPopular: false,
features: [
'基础+高级模型访问',
'AI超级加速',
'无限制使用',
'售后微信群优先处理',
'可用49.9元优惠券',
],
},
],
faqs: [
{
question: '意心AI是否真的“无限制”',
answer: '在日常合理使用范围内,我们不做次数限制。但如检测到滥用行为,将封号处理。',
},
{
question: '是否支持退款?',
answer: '我们支持良心售后1天内可申请退款请联系售后微信群或站长。',
},
{
question: '平台是直连的吗?',
answer: '是的我们不是通过其他平台转发而是与各大AI服务官方API直接对接。',
},
],
},
];