立即体验
@@ -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()