fix: 更新客服联系方式和产品价格信息
- 统一修改客服支持提示信息为"备注ai获取专属客服支持" - 更新会员套餐价格和描述信息 - 替换模型排行榜iframe为openrouter链接 - 调整内容截断长度从2000到10000字符
This commit is contained in:
@@ -12,9 +12,9 @@ const emit = defineEmits(['close']);
|
||||
|
||||
const packagesData = {
|
||||
member: [
|
||||
{ id: 1, name: '10个月', desc: '', price: 199.9, perMonth: 19.9, tag: '超高性价比', discount: '长期省心', key: 10 },
|
||||
{ id: 2, name: '6个月', desc: '', price: 143.9, perMonth: 23.9, tag: '年度热销', key: 6 },
|
||||
{ id: 3, name: '3个月', desc: '', price: 80.7, perMonth: 26.9, tag: '短期体验', discount: '', key: 3 },
|
||||
{ id: 1, name: '9个月(推荐)', desc: '', price: 197.1, perMonth: 21.9, tag: '超高性价比', discount: '限时活动', key: 9 },
|
||||
{ id: 2, name: '6个月', desc: '', price: 155.4, perMonth: 25.9, tag: '年度热销', key: 6 },
|
||||
{ id: 3, name: '3个月', desc: '', price: 83.7, perMonth: 27.9, tag: '短期体验', discount: '', key: 3 },
|
||||
{ id: 4, name: '1个月', desc: '', price: 29.9, originalPrice: 49.9, tag: '灵活选择', discount: '', key: 1 },
|
||||
// { id: 5, name: '测试', desc: '', price: 0.01, originalPrice: 9.9, tag: '测试使用', discount: '', key: 0 },
|
||||
],
|
||||
|
||||
@@ -79,25 +79,16 @@ const models = [
|
||||
<h2 class="text-2xl font-semibold mb-4 text-center">
|
||||
热门大模型价格实时排行榜
|
||||
</h2>
|
||||
<div class="rounded-2xl shadow-lg overflow-hidden border border-gray-200">
|
||||
<iframe
|
||||
|
||||
src="https://easyllm.site/static/models.html"
|
||||
|
||||
width="100%"
|
||||
height="700"
|
||||
class="w-full"
|
||||
loading="lazy"
|
||||
sandbox="allow-scripts allow-same-origin allow-popups"
|
||||
/>
|
||||
<div class="rounded-2xl shadow-lg overflow-hidden border border-gray-200 flex justify-center items-center p-4">
|
||||
<a href="https://openrouter.ai/models">https://openrouter.ai/models</a>
|
||||
</div>
|
||||
<p class="text-sm text-center text-gray-500 mt-2">
|
||||
来源:LMSYS Chatbot Arena 排行榜
|
||||
来源:openrouter 模型榜
|
||||
</p>
|
||||
</div>
|
||||
<div class="mt-8 text-center">
|
||||
<h2 class="text-2xl font-semibold mb-2">
|
||||
一口价订阅,最低仅需 <span class="text-red-500 text-3xl font-bold">19.9元/月</span> 起
|
||||
一口价订阅,最低仅需 <span class="text-red-500 text-3xl font-bold">21.9元/月</span> 起
|
||||
</h2>
|
||||
<p class="text-gray-600 mb-4">
|
||||
即解锁以上全部模型,随时切换,无需单独付费。
|
||||
|
||||
@@ -155,8 +155,8 @@ onMounted(() => {
|
||||
append-to-body
|
||||
>
|
||||
<h3 class="text-lg font-bold mb-3">
|
||||
请扫码加入微信交流群<br>
|
||||
或添加站长微信加入售后群获取专属客服支持
|
||||
请扫码加入微信交流群<br>
|
||||
备注ai获取专属客服支持
|
||||
</h3>
|
||||
<div class="mb-4 flex items-center justify-center space-x-2">
|
||||
<span class="font-semibold">站长微信账号:</span>
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -244,8 +244,8 @@ function contactCustomerService() {
|
||||
append-to-body
|
||||
>
|
||||
<h3 class="text-lg font-bold mb-3">
|
||||
请扫码加入微信交流群<br>
|
||||
或添加站长微信加入售后群获取专属客服支持
|
||||
请扫码加入微信交流群<br>
|
||||
备注ai获取专属客服支持
|
||||
</h3>
|
||||
<div class="py-10 flex items-center justify-center space-x-2">
|
||||
<span class="font-semibold">站长微信账号:</span>
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<script lang="ts" setup>
|
||||
import { ElMessageBox } from 'element-plus';
|
||||
import SupportModelProducts from '@/components/SupportModelProducts/indexl.vue';
|
||||
|
||||
import wx from '/src/assets/images/wx.png'
|
||||
const wxSrc = computed(
|
||||
() => `/src/assets/images/wx.png`,
|
||||
() => wx,
|
||||
);
|
||||
// 微信群二维码
|
||||
const wxGroupQD = `/src/assets/images/wx.png`;
|
||||
const wxGroupQD = wx;
|
||||
const srcList = [
|
||||
wxGroupQD,
|
||||
];
|
||||
@@ -195,7 +195,7 @@ function openContact() {
|
||||
<div class="text-center relative">
|
||||
<h3 class="text-lg font-bold mb-3">
|
||||
请扫码加入微信交流群<br>
|
||||
获取专属客服支持
|
||||
备注ai获取专属客服支持
|
||||
</h3>
|
||||
<div class="mb-4 flex items-center justify-center space-x-2">
|
||||
<!-- <span class="font-semibold">站长微信账号:</span> -->
|
||||
|
||||
Reference in New Issue
Block a user