fix: 更新客服联系方式和产品价格信息

- 统一修改客服支持提示信息为"备注ai获取专属客服支持"
- 更新会员套餐价格和描述信息
- 替换模型排行榜iframe为openrouter链接
- 调整内容截断长度从2000到10000字符
This commit is contained in:
ccnetcore
2025-09-07 18:49:58 +08:00
parent 9e41a7c446
commit 0223b5c104
6 changed files with 17 additions and 26 deletions

View File

@@ -187,8 +187,8 @@ async function startSSE(chatContent: string) {
for await (const chunk of stream({
messages: bubbleItems.value.slice(0, -1).slice(-6).map((item: MessageItem) => ({
role: item.role,
content: (item.role === 'ai' || item.role === 'assistant') && item.content.length > 2000
? `${item.content.substring(0, 2000)}...(内容过长,已省略)`
content: (item.role === 'ai' || item.role === 'assistant') && item.content.length > 10000
? `${item.content.substring(0, 10000)}...(内容过长,已省略)`
: item.content,
})),
sessionId: route.params?.id !== 'not_login' ? String(route.params?.id) : 'not_login',