Compare commits

..

No commits in common. "1d88c4ea6b152d51780832bdfd6eb6f562c8f71a" and "fba4ca22e416860951f4dd320f7239470f47cddf" have entirely different histories.

2 changed files with 4 additions and 10 deletions

View File

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

View File

@ -6,7 +6,7 @@
> >
<!-- Static More Reviews Button, 不受动画影响随时可点 --> <!-- Static More Reviews Button, 不受动画影响随时可点 -->
<a <a
:href="reviewLink" href="https://hifastvpn.com/reviews"
target="_blank" 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" 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,7 +59,6 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref, onMounted, onUnmounted, computed } from 'vue'; import { ref, onMounted, onUnmounted, computed } from 'vue';
import { getAllQueryString } from '@/utils/url-utils.ts';
// Import avatars // Import avatars
import avatar1 from './avatars/avatar1.png'; import avatar1 from './avatars/avatar1.png';
@ -106,11 +105,6 @@ const reviews = [
const currentIndex = ref(0); const currentIndex = ref(0);
const currentReview = computed(() => reviews[currentIndex.value]); 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; let timer: any = null;
const startCarousel = () => { const startCarousel = () => {