gsd 1 year ago
parent
commit
6941ae0014
  1. 6
      src/api/AdminApi.js
  2. 7
      src/api/GlobalApi.js
  3. 8
      src/api/PlayerApi.js
  4. 12
      src/api/Random.js
  5. 5
      src/api/VipApi.js
  6. 7
      src/components/ActionDialogs/AdminDialog.vue
  7. 3
      src/components/ActionDialogs/ReportView.vue
  8. 5
      src/components/Others/Auth/AuthWindow.vue
  9. 13
      src/components/Others/Auth/DiscordWindow.vue
  10. 3
      src/components/Others/Loader/HiddenEgg.vue
  11. 3
      src/components/Others/Loader/ProfileViewer.vue
  12. 3
      src/components/TabsMenuElements/BackendStatus/Components/FindPlayer.vue
  13. 13
      src/components/TabsMenuElements/ProfileView/Components/ProfileContainer.vue
  14. 3
      src/components/TabsMenuElements/VipView/Components/FreeVipDialog.vue
  15. 5
      src/components/TabsMenuElements/VipView/Components/VipBuyDialog.vue

6
src/api/AdminApi.js

@ -1,5 +1,5 @@
import axios from "axios"; import axios from "axios";
import Random from "@/api/Random";
export default class AdminApi { export default class AdminApi {
permition = { permition = {
ban:false, ban:false,
@ -9,7 +9,7 @@ export default class AdminApi {
} }
async checkPermition(name) { async checkPermition(name) {
return axios.options(`/api/admin/${name}`) return axios.options(`/api/admin/${name}` + Random.getRndWebNew())
.then(response => { .then(response => {
if (response.status === 200) this.permition[name] = true; if (response.status === 200) this.permition[name] = true;
}) })
@ -19,7 +19,7 @@ export default class AdminApi {
} }
async checkAltAccess(){ async checkAltAccess(){
return axios.options('/api/admin/db/alt').then( return axios.options('/api/admin/db/alt' + Random.getRndWebNew()).then(
response => {if (response.status === 200) this.permition.alt = true; response => {if (response.status === 200) this.permition.alt = true;
else this.permition.alt = false;} else this.permition.alt = false;}
).catch(()=>this.permition.alt = false) ).catch(()=>this.permition.alt = false)

7
src/api/GlobalApi.js

@ -4,6 +4,7 @@ import PlayerApi from "@/api/PlayerApi";
import Stages from "@/api/Stages"; import Stages from "@/api/Stages";
import VipAPI from "@/api/VipApi"; import VipAPI from "@/api/VipApi";
import {VERSION} from "@/api/version"; import {VERSION} from "@/api/version";
import Random from "@/api/Random";
export default class GlobalApi { export default class GlobalApi {
stats = { stats = {
@ -56,7 +57,7 @@ export default class GlobalApi {
async fillThis(value) { async fillThis(value) {
console.log(`[API] load: ${value}`); console.log(`[API] load: ${value}`);
this.load_stages.add(value); this.load_stages.add(value);
return await axios.get(`/api/stats?filter=${value}`) return await axios.get(`/api/stats?filter=${value}` + Random.getRndWebAppend())
.then(response => response.data) .then(response => response.data)
.then(response => { .then(response => {
this.stats = Object.assign(this.stats, response); this.stats = Object.assign(this.stats, response);
@ -72,7 +73,7 @@ export default class GlobalApi {
async fillOther() { async fillOther() {
console.log(`[API] load: other`); console.log(`[API] load: other`);
this.load_stages.add("other"); this.load_stages.add("other");
return await axios.get(`/api/stats?filter=other`) return await axios.get(`/api/stats?filter=other` + Random.getRndWebAppend())
.then(response => response.data) .then(response => response.data)
.then(response => { .then(response => {
this.stats["builddate"] = response["builddate"]; this.stats["builddate"] = response["builddate"];
@ -90,7 +91,7 @@ export default class GlobalApi {
async fillServers() { async fillServers() {
this.load_stages.add("servers") this.load_stages.add("servers")
console.log(`[API] load: servers`); console.log(`[API] load: servers`);
return axios.get("/api/stats?filter=servers") return axios.get("/api/stats?filter=servers" + Random.getRndWebAppend())
.then(response => response.data['servers']) .then(response => response.data['servers'])
.then(response => { .then(response => {
let srvs = { let srvs = {

8
src/api/PlayerApi.js

@ -1,5 +1,5 @@
import axios from "axios"; import axios from "axios";
import Random from "@/api/Random";
export const PLAYER_REQUESTS = "steam_data,lastplay,permition,ban,attached_discord"; export const PLAYER_REQUESTS = "steam_data,lastplay,permition,ban,attached_discord";
export default class PlayerApi { export default class PlayerApi {
@ -65,7 +65,7 @@ export default class PlayerApi {
} }
async loadFull() { async loadFull() {
return axios.get(`/api/profile/current?requests=auth`) return axios.get(`/api/profile/current?requests=auth` + Random.getRndWebAppend())
.then(response => { .then(response => {
if (response.status === 200) { if (response.status === 200) {
this.store = response.data; this.store = response.data;
@ -78,7 +78,7 @@ export default class PlayerApi {
} }
async loadThis(value) { async loadThis(value) {
return axios.get(`/api/profile/current?requests=${value}`) return axios.get(`/api/profile/current?requests=${value}` + Random.getRndWebAppend())
.then(response => { .then(response => {
if (response.status === 200) { if (response.status === 200) {
this.store = response.data; this.store = response.data;
@ -91,7 +91,7 @@ export default class PlayerApi {
} }
async loadDiscord() { async loadDiscord() {
return axios.get(`api/auth/discord`) return axios.get(`api/auth/discord` + Random.getRndWebNew())
.then(response => { .then(response => {
if (response.status === 200) this.discord = response.data; if (response.status === 200) this.discord = response.data;
}) })

12
src/api/Random.js

@ -0,0 +1,12 @@
export default {
name: "Random",
getRndStr(){
return (Math.random() + 1).toString(36);
},
getRndWebAppend(){
return `&rnd=${this.getRndStr()}`;
},
getRndWebNew(){
return `?rnd=${this.getRndStr()}`;
}
}

5
src/api/VipApi.js

@ -1,4 +1,5 @@
import axios from "axios"; import axios from "axios";
import Random from "@/api/Random";
export default class VipAPI { export default class VipAPI {
@ -10,7 +11,7 @@ export default class VipAPI {
async getVipPrices(stages) { async getVipPrices(stages) {
console.log(`[API] load: vip prices`); console.log(`[API] load: vip prices`);
stages.add("vip prices"); stages.add("vip prices");
return await axios.get(`/api/external/vip`) return await axios.get(`/api/external/vip` + Random.getRndWebNew())
.then(response => response.data) .then(response => response.data)
.then(response => { .then(response => {
this.vip_prices = response; this.vip_prices = response;
@ -29,7 +30,7 @@ export default class VipAPI {
async getVipStatistic(stages) { async getVipStatistic(stages) {
console.log(`[API] load: vip statistic`); console.log(`[API] load: vip statistic`);
stages.add("vip statistic"); stages.add("vip statistic");
return await axios.get(`/api/stats?filter=donate`) return await axios.get(`/api/stats?filter=donate` + Random.getRndWebAppend())
.then(response => response.data) .then(response => response.data)
.then(response => { .then(response => {
this.vip_statistic = response['donate']; this.vip_statistic = response['donate'];

7
src/components/ActionDialogs/AdminDialog.vue

@ -67,6 +67,7 @@
<script> <script>
import axios from "axios"; import axios from "axios";
import Random from "@/api/Random";
export default { export default {
name: "AdminDialog", name: "AdminDialog",
props: { props: {
@ -87,7 +88,7 @@ export default {
toBan() { toBan() {
this.sending = true; this.sending = true;
this.response = "Отправляем..."; this.response = "Отправляем...";
axios.post(`/api/admin/ban?steam64=${this.steam64}&ban_length=${this.payload.ban_length}&ban_reason=${this.payload.ban_reason}`) axios.post(`/api/admin/ban?steam64=${this.steam64}&ban_length=${this.payload.ban_length}&ban_reason=${this.payload.ban_reason}` + Random.getRndWebAppend())
.then((response) => { .then((response) => {
switch (response.status) { switch (response.status) {
case 201: {this.response=`Успешно забанен, ид #${response.data}`;break;} case 201: {this.response=`Успешно забанен, ид #${response.data}`;break;}
@ -101,7 +102,7 @@ export default {
toUnBan(){ toUnBan(){
this.sending = true; this.sending = true;
this.response = "Отправляем..."; this.response = "Отправляем...";
axios.post(`/api/admin/unban?steam64=${this.steam64}`) axios.post(`/api/admin/unban?steam64=${this.steam64}` + Random.getRndWebAppend())
.then((response) => { .then((response) => {
switch (response.status) { switch (response.status) {
case 200: {this.response=`Игрок разбанен!`;break;} case 200: {this.response=`Игрок разбанен!`;break;}
@ -115,7 +116,7 @@ export default {
toKick(){ toKick(){
this.sending = true; this.sending = true;
this.response = "Отправляем..."; this.response = "Отправляем...";
axios.post(`/api/admin/kick?steam64=${this.steam64}&reason=${this.payload.ban_reason}`) axios.post(`/api/admin/kick?steam64=${this.steam64}&reason=${this.payload.ban_reason}` + Random.getRndWebAppend())
.then((response) => { .then((response) => {
switch (response.status) { switch (response.status) {
case 200: {this.response=`Игрок был кикнут!`;break;} case 200: {this.response=`Игрок был кикнут!`;break;}

3
src/components/ActionDialogs/ReportView.vue

@ -16,6 +16,7 @@
<script> <script>
import axios from "axios"; import axios from "axios";
import Random from "@/api/Random";
export default { export default {
name: "ReportView", name: "ReportView",
props: { props: {
@ -31,7 +32,7 @@ export default {
sendReport() { sendReport() {
this.loading = true; this.loading = true;
this.rsp = "Загрузка..."; this.rsp = "Загрузка...";
axios.post(`api/profile/current/report?steam64=${this.steam64}&text=${this.reason}`).then( axios.post(`api/profile/current/report?steam64=${this.steam64}&text=${this.reason}` + Random.getRndWebAppend()).then(
(response => { (response => {
if (response.data > 0) this.showRV(false); if (response.data > 0) this.showRV(false);
else if (response.data < 0) this.feedback = `Не так быстро, подожди ${response.data*-1} секунд`; else if (response.data < 0) this.feedback = `Не так быстро, подожди ${response.data*-1} секунд`;

5
src/components/Others/Auth/AuthWindow.vue

@ -38,6 +38,7 @@
<script> <script>
import SteamSvg from "@/components/Others/CustomSvg/SteamSvg.vue"; import SteamSvg from "@/components/Others/CustomSvg/SteamSvg.vue";
import DiscordSvg from "@/components/Others/CustomSvg/DiscordSvg.vue"; import DiscordSvg from "@/components/Others/CustomSvg/DiscordSvg.vue";
import Random from "@/api/Random";
export default { export default {
name: 'AuthWindow', name: 'AuthWindow',
@ -53,9 +54,9 @@ export default {
} }
if (service === 'steam') { if (service === 'steam') {
return window.open(`/api/auth/${action}?subdomain=${subdomain}`, '_self'); return window.open(`/api/auth/${action}?subdomain=${subdomain}`+Random.getRndWebAppend(), '_self');
} }
return window.open(`/api/auth/${service}/${action}`, '_self'); return window.open(`/api/auth/${service}/${action}`+Random.getRndWebNew(), '_self');
}, },
openAW() { this.showAuthDialog = true }, openAW() { this.showAuthDialog = true },
closeAW() { this.showAuthDialog = false } closeAW() { this.showAuthDialog = false }

13
src/components/Others/Auth/DiscordWindow.vue

@ -48,6 +48,7 @@
<script> <script>
import axios from "axios"; import axios from "axios";
import Random from "@/api/Random";
export default { export default {
name: "DiscordWindow", name: "DiscordWindow",
data: () => ({ data: () => ({
@ -82,9 +83,9 @@ export default {
} }
if (service === 'steam') { if (service === 'steam') {
return window.open(`/api/auth/${action}?subdomain=${subdomain}`, '_self'); return window.open(`/api/auth/${action}?subdomain=${subdomain}` + Random.getRndWebAppend(), '_self');
} }
return window.open(`/api/auth/${service}/${action}`, '_self'); return window.open(`/api/auth/${service}/${action}` + Random.getRndWebNew(), '_self');
}, },
getMove(){ getMove(){
console.log("[DiscordWindow] next stage: steam") console.log("[DiscordWindow] next stage: steam")
@ -110,7 +111,7 @@ export default {
if (this.url !== null) window.open("https://tf2.pblr-nyk.pro/discord", '_blank'); if (this.url !== null) window.open("https://tf2.pblr-nyk.pro/discord", '_blank');
}, },
registerDiscord(){ registerDiscord(){
axios.post("api/auth/discord").then( axios.post("api/auth/discord" + Random.getRndWebNew()).then(
(response) => { (response) => {
switch (response.status) { switch (response.status) {
case 201: {this.discord.reg_msg = "Аккаунт привязан!";this.updateDiscordId();this.openDiscord();break;} case 201: {this.discord.reg_msg = "Аккаунт привязан!";this.updateDiscordId();this.openDiscord();break;}
@ -125,7 +126,7 @@ export default {
}) })
}, },
unregisterDiscord() { unregisterDiscord() {
axios.delete("api/auth/steam/discord") axios.delete("api/auth/steam/discord" + Random.getRndWebNew())
.then((response) => { .then((response) => {
if (response.status === 200) { if (response.status === 200) {
this.discordAuth = true; this.discordAuth = true;
@ -139,7 +140,7 @@ export default {
updateDiscordId() { updateDiscordId() {
if (this.$API.player.auth("steam")) { if (this.$API.player.auth("steam")) {
console.log("[DiscordWindow] found steam cookie"); console.log("[DiscordWindow] found steam cookie");
axios.get("api/auth/steam/discord").then( axios.get("api/auth/steam/discord" + Random.getRndWebNew()).then(
(response) => { (response) => {
if (response.status === 200) { if (response.status === 200) {
this.discordAuth = false; this.discordAuth = false;
@ -156,7 +157,7 @@ export default {
this.updateDiscordId() this.updateDiscordId()
if (this.$API.player.auth("discord")) { if (this.$API.player.auth("discord")) {
console.log("[DiscordWindow] found discord cookie"); console.log("[DiscordWindow] found discord cookie");
axios.get("api/auth/discord").then( axios.get("api/auth/discord" + Random.getRndWebNew()).then(
(response) => { (response) => {
if (response.status === 200) { if (response.status === 200) {
this.discord.nickname = response.data.username; this.discord.nickname = response.data.username;

3
src/components/Others/Loader/HiddenEgg.vue

@ -42,6 +42,7 @@
<script> <script>
import Devochka from "@/components/Others/Images/Devochka.vue"; import Devochka from "@/components/Others/Images/Devochka.vue";
import axios from "axios"; import axios from "axios";
import Random from "@/api/Random";
export default { export default {
name: 'HiddenEgg', name: 'HiddenEgg',
@ -69,7 +70,7 @@ export default {
} }
}, },
foundPlayer() { foundPlayer() {
axios.post("/api/profile/steam/web", {"any":this.player_string}) axios.post("/api/profile/steam/web" + Random.getRndWebNew(), {"any":this.player_string})
.then(response => { .then(response => {
if (response.status === 200 && 'steam64' in response.data) { if (response.status === 200 && 'steam64' in response.data) {
window.open(response.data['community_url']); window.open(response.data['community_url']);

3
src/components/Others/Loader/ProfileViewer.vue

@ -21,6 +21,7 @@ import ProfileContainer from "@/components/TabsMenuElements/ProfileView/Componen
import axios from "axios"; import axios from "axios";
import {PLAYER_REQUESTS} from "@/api/PlayerApi"; import {PLAYER_REQUESTS} from "@/api/PlayerApi";
import AdminDialog from "@/components/ActionDialogs/AdminDialog.vue"; import AdminDialog from "@/components/ActionDialogs/AdminDialog.vue";
import Random from "@/api/Random";
export default { export default {
name: "ProfileViewer", name: "ProfileViewer",
@ -46,7 +47,7 @@ export default {
loadProfile(steam64){ loadProfile(steam64){
this.showProfileDialog = true; this.showProfileDialog = true;
this.loading = true; this.loading = true;
axios.get(`/api/profile/web?steam64=${steam64}&requests=${PLAYER_REQUESTS}`).then(response => { axios.get(`/api/profile/web?steam64=${steam64}&requests=${PLAYER_REQUESTS}` + Random.getRndWebAppend()).then(response => {
if (response.status === 200) this.player = response.data; if (response.status === 200) this.player = response.data;
else console.log("not permition"); else console.log("not permition");
}).catch((err) => { }).catch((err) => {

3
src/components/TabsMenuElements/BackendStatus/Components/FindPlayer.vue

@ -20,6 +20,7 @@
<script> <script>
import ProfileViewer from "@/components/Others/Loader/ProfileViewer.vue"; import ProfileViewer from "@/components/Others/Loader/ProfileViewer.vue";
import axios from "axios"; import axios from "axios";
import Random from "@/api/Random";
export default { export default {
name: "FindPlayer", name: "FindPlayer",
@ -42,7 +43,7 @@ export default {
this.not_found = null; this.not_found = null;
if (this.player_string.length === 0) return; if (this.player_string.length === 0) return;
this.player_steam64 = ""; this.player_steam64 = "";
axios.post("/api/profile/steam/web", {"any":this.player_string}) axios.post("/api/profile/steam/web" + Random.getRndWebNew(), {"any":this.player_string})
.then(response => { .then(response => {
if (response.status === 200 && response.data && 'steam64' in response.data) { if (response.status === 200 && response.data && 'steam64' in response.data) {
console.log(response.data); console.log(response.data);

13
src/components/TabsMenuElements/ProfileView/Components/ProfileContainer.vue

@ -96,6 +96,7 @@ import DiscordSvg from "@/components/Others/CustomSvg/DiscordSvg.vue";
import SteamSvg from "@/components/Others/CustomSvg/SteamSvg.vue"; import SteamSvg from "@/components/Others/CustomSvg/SteamSvg.vue";
import axios from "axios"; import axios from "axios";
import SnackLoader from "@/components/Others/Loader/SnackLoader.vue"; import SnackLoader from "@/components/Others/Loader/SnackLoader.vue";
import Random from "@/api/Random";
export default { export default {
name: "ProfileContainer", name: "ProfileContainer",
@ -154,10 +155,10 @@ export default {
this.player_ip = "Показать"; this.player_ip = "Показать";
return; return;
} }
axios.options("api/crypto").then((response) => { axios.options("api/crypto" + Random.getRndWebNew()).then((response) => {
this.player_ip = "ждем..."; this.player_ip = "ждем...";
if (response.status === 200) { if (response.status === 200) {
axios.post("api/crypto/decrypt", {"ip":this.player['play_on']['ip']}).then(response => { axios.post("api/crypto/decrypt" + Random.getRndWebNew(), {"ip":this.player['play_on']['ip']}).then(response => {
this.player_ip = response.data['ip']; this.player_ip = response.data['ip'];
}) })
} }
@ -168,7 +169,7 @@ export default {
loadingDonates(){ loadingDonates(){
if (this.donates.loading) return; if (this.donates.loading) return;
this.donates.loading = true; this.donates.loading = true;
axios.get(`api/profile/web?steam64=${this.player['steamids']['steam64']}&requests=donates`) axios.get(`api/profile/web?steam64=${this.player['steamids']['steam64']}&requests=donates` + Random.getRndWebAppend())
.then(response => { .then(response => {
this.donates.store = response.data['donates']; this.donates.store = response.data['donates'];
this.donates.loaded = true; this.donates.loaded = true;
@ -183,7 +184,7 @@ export default {
loadingBanList(){ loadingBanList(){
if (this.ban_list.loading || this.ban_list.loaded) return; if (this.ban_list.loading || this.ban_list.loaded) return;
this.ban_list.loading = true; this.ban_list.loading = true;
axios.get(`api/profile/web?steam64=${this.player['steamids']['steam64']}&requests=ban_list`) axios.get(`api/profile/web?steam64=${this.player['steamids']['steam64']}&requests=ban_list` + Random.getRndWebAppend())
.then(response => { .then(response => {
this.ban_list.store = response.data['ban_list']; this.ban_list.store = response.data['ban_list'];
this.ban_list.loaded = true; this.ban_list.loaded = true;
@ -198,7 +199,7 @@ export default {
if (this.usertime.loading || this.usertime.loaded) return; if (this.usertime.loading || this.usertime.loaded) return;
this.usertime.loading = true; this.usertime.loading = true;
this.usertime.total = "считаем сколько"; this.usertime.total = "считаем сколько";
axios.get(`api/profile/web?steam64=${this.player['steamids']['steam64']}&requests=usertime`) axios.get(`api/profile/web?steam64=${this.player['steamids']['steam64']}&requests=usertime` + Random.getRndWebAppend())
.then(response => { .then(response => {
this.usertime.store = this.$API.player.getGametime(this.$API, response.data['gametime']); this.usertime.store = this.$API.player.getGametime(this.$API, response.data['gametime']);
this.usertime.total = this.timeFormat(this.$API.player.getGametimeTotal(response.data['gametime'])); this.usertime.total = this.timeFormat(this.$API.player.getGametimeTotal(response.data['gametime']));
@ -214,7 +215,7 @@ export default {
loadingAltList(){ loadingAltList(){
if (this.altaccount.loading || this.altaccount.loaded) return; if (this.altaccount.loading || this.altaccount.loaded) return;
this.altaccount.loading = true; this.altaccount.loading = true;
axios.get(`api/admin/db/alt?steam64=${this.player['steamids']['steam64']}`) axios.get(`api/admin/db/alt?steam64=${this.player['steamids']['steam64']}` + Random.getRndWebAppend())
.then(response => { .then(response => {
if (response.status === 200) { if (response.status === 200) {
this.altaccount.store = response.data.map(url => url.split('/').pop()).filter(s64 => s64 !== this.player['steamids']['steam64']); this.altaccount.store = response.data.map(url => url.split('/').pop()).filter(s64 => s64 !== this.player['steamids']['steam64']);

3
src/components/TabsMenuElements/VipView/Components/FreeVipDialog.vue

@ -12,6 +12,7 @@
<script> <script>
import axios from "axios"; import axios from "axios";
import Random from "@/api/Random";
export default { export default {
name: 'FreeVipDialog', name: 'FreeVipDialog',
data: () => ({ data: () => ({
@ -22,7 +23,7 @@ export default {
methods: { methods: {
openFVD(s) {this.showFreeVipDialog = s;}, openFVD(s) {this.showFreeVipDialog = s;},
getFreeVIP() { getFreeVIP() {
axios.post("api/profile/current/freevip").then( axios.post("api/profile/current/freevip" + Random.getRndWebNew()).then(
(response) => { (response) => {
if (response.data === 0) this.result="У тебя уже есть VIP, жать второй раз незачем"; if (response.data === 0) this.result="У тебя уже есть VIP, жать второй раз незачем";
else if (response.data === 1) this.result="Бесплатный вип выдан, балдей..."; else if (response.data === 1) this.result="Бесплатный вип выдан, балдей...";

5
src/components/TabsMenuElements/VipView/Components/VipBuyDialog.vue

@ -60,6 +60,7 @@ import SteamSvg from "@/components/Others/CustomSvg/SteamSvg.vue";
import FreeSvg from "@/components/Others/CustomSvg/FreeSvg.vue"; import FreeSvg from "@/components/Others/CustomSvg/FreeSvg.vue";
import AuthWindow from "@/components/Others/Auth/AuthWindow.vue"; import AuthWindow from "@/components/Others/Auth/AuthWindow.vue";
import FreeVipDialog from "@/components/TabsMenuElements/VipView/Components/FreeVipDialog.vue"; import FreeVipDialog from "@/components/TabsMenuElements/VipView/Components/FreeVipDialog.vue";
import Random from "@/api/Random";
export default { export default {
name: 'VipBuyDialog', name: 'VipBuyDialog',
@ -78,10 +79,10 @@ export default {
this.showBuyDialog = false; this.showBuyDialog = false;
}, },
buyWithSteam() { buyWithSteam() {
window.open("api/profile/current/buyvip?buy_type=steam", "_blank"); window.open("api/profile/current/buyvip?buy_type=steam" + Random.getRndWebAppend(), "_blank");
}, },
buyWithQiwi(cost) { buyWithQiwi(cost) {
window.open(`api/profile/current/buyvip?buy_type=qiwi&steam64=${this.$API.player.store.steamids.steam64}&cost=${cost}`, "_blank") window.open(`api/profile/current/buyvip?buy_type=qiwi&steam64=${this.$API.player.store.steamids.steam64}&cost=${cost}` + Random.getRndWebAppend(), "_blank")
}, },
buyWithFree() { buyWithFree() {
this.$refs.vfd.getFreeVIP(); this.$refs.vfd.getFreeVIP();

Loading…
Cancel
Save