diff --git a/src/views/Ai.vue b/src/views/Ai.vue index 8939207..8c48025 100644 --- a/src/views/Ai.vue +++ b/src/views/Ai.vue @@ -96,9 +96,9 @@
需消耗20智点
-
+
- 立即体验 + 立即体验
@@ -113,7 +113,7 @@
还剩3次体验机会
-
+
立即体验 @@ -158,7 +158,7 @@ 积分不足,需消耗29智点
-
+
立即体验 @@ -301,6 +301,18 @@ const ICON_MAP: Record = { const selectedTitle = ref('') +// 立即体验按钮跳转函数 +const goToExperience = (index: number) => { + const urls = [ + 'http://103.40.14.23:25534', + 'http://103.40.14.23:25535', + 'http://103.40.14.23:25536' + ] + + if (index >= 0 && index < urls.length) { + window.location.href = urls[index] + } +} function normalizeTitle(text?: string) { if (!text) return '体验详情' const t = String(text).replace(/\s+/g, ' ').trim()