添加默认邀请人,download@hifast.biz 'uSSfgY6oAP'
All checks were successful
site-dist-deploy / build-and-deploy (push) Successful in 1m33s
All checks were successful
site-dist-deploy / build-and-deploy (push) Successful in 1m33s
This commit is contained in:
parent
1e26abf1d8
commit
ee8ce4c559
@ -119,7 +119,7 @@ const handleDownload = async (key: string) => {
|
||||
|
||||
try {
|
||||
const res: any = await request.get('/api/v1/common/client/download', {
|
||||
invite_code: getAllQueryString('ic'),
|
||||
invite_code: getAllQueryString('ic') || 'uSSfgY6oAP',
|
||||
platform: platform,
|
||||
})
|
||||
if (res.url) {
|
||||
|
||||
@ -107,8 +107,8 @@ 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';
|
||||
const ic = getAllQueryString('ic') || 'uSSfgY6oAP';
|
||||
return `https://hifastvpn.com/reviews?ic=${ic}`
|
||||
});
|
||||
|
||||
let timer: any = null;
|
||||
|
||||
@ -43,7 +43,7 @@ class AdjustUtil {
|
||||
console.log('Adjust SDK Initialized (NPM)')
|
||||
|
||||
// 获取并设置 inviteCode 作为全局参数
|
||||
const ic = getAllQueryString('ic')
|
||||
const ic = getAllQueryString('ic') || 'uSSfgY6oAP'
|
||||
if (ic) {
|
||||
Adjust.addGlobalCallbackParameters([
|
||||
{ key: 'inviteCode', value: ic }
|
||||
|
||||
@ -43,7 +43,7 @@ class OpenInstallSdk {
|
||||
const button = document.getElementById('downloadButton_apple')
|
||||
const button_mac = document.getElementById('downloadButton_mac')
|
||||
const button1 = document.getElementById('downloadButton_android')
|
||||
const ic = getAllQueryString('ic')
|
||||
const ic = getAllQueryString('ic') || 'uSSfgY6oAP'
|
||||
if (button) {
|
||||
button.onclick = function () {
|
||||
if (ic) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user