Compare commits

...

2 Commits

Author SHA1 Message Date
1d88c4ea6b 邀请链接替换ios
All checks were successful
site-dist-deploy / build-and-deploy (push) Successful in 1m59s
2026-03-30 05:26:44 +03:00
0ca0a3fc4d 修改邀请链接 2026-03-26 04:22:47 +02:00
2 changed files with 10 additions and 4 deletions

View File

@ -116,9 +116,9 @@ request.get('/api/v1/common/client/download', {
const allDownloadOptions = computed(() => [
{ key: 'win', mainIcon: Icon1, secondaryIcon: WinIcon, link: downLoadWin.value, label: 'Windows', id: 'downloadButton_win' },
{ key: 'mac', mainIcon: Icon3, secondaryIcon: MacIcon, label: 'macOS', id: 'downloadButton_mac' },
{ key: 'ios', mainIcon: Icon2, secondaryIcon: AppleIcon, label: 'iOS', id: 'downloadButton_apple' },
{ key: 'android', mainIcon: Icon4, secondaryIcon: AndroidIcon, label: 'Android', id: 'downloadButton_android' },
{ key: 'mac', mainIcon: Icon3, secondaryIcon: MacIcon, label: 'macOS', link: `https://hifastvpn.go.link?adj_t=1xf6e7ru&inviteCode=${getAllQueryString('ic')}` },
{ key: 'ios', mainIcon: Icon2, secondaryIcon: AppleIcon, label: 'iOS', link: `https://hifastvpn.go.link?adj_t=1xf6e7ru&inviteCode=${getAllQueryString('ic')}` },
{ key: 'android', mainIcon: Icon4, secondaryIcon: AndroidIcon, label: 'Android', link: `https://hifastvpn.go.link?adj_t=1xf6e7ru&inviteCode=${getAllQueryString('ic')}`, },
])
const mainButton = computed(() => {

View File

@ -6,7 +6,7 @@
>
<!-- Static More Reviews Button, 不受动画影响随时可点 -->
<a
href="https://hifastvpn.com/reviews"
:href="reviewLink"
target="_blank"
class="absolute cursor-pointer right-4 top-[18px] md:right-5 z-20 text-[10px] md:text-sm text-white hover:text-[#ADFF5B] transition-colors underline decoration-white underline-offset-4"
>
@ -59,6 +59,7 @@
<script setup lang="ts">
import { ref, onMounted, onUnmounted, computed } from 'vue';
import { getAllQueryString } from '@/utils/url-utils.ts';
// Import avatars
import avatar1 from './avatars/avatar1.png';
@ -105,6 +106,11 @@ const reviews = [
const currentIndex = ref(0);
const currentReview = computed(() => reviews[currentIndex.value]);
const reviewLink = computed(() => {
const ic = getAllQueryString('ic');
return ic ? `https://hifastvpn.com/reviews?ic=${ic}` : 'https://hifastvpn.com/reviews';
});
let timer: any = null;
const startCarousel = () => {