diff --git a/src/components/ActionDialogs/Information/BuyVipInstruction.vue b/src/components/ActionDialogs/Information/BuyVipInstruction.vue new file mode 100644 index 0000000..e0a8f78 --- /dev/null +++ b/src/components/ActionDialogs/Information/BuyVipInstruction.vue @@ -0,0 +1,70 @@ + + + \ No newline at end of file diff --git a/src/components/TabsMenuElements/VipView/Components/VipBuyDialog.vue b/src/components/TabsMenuElements/VipView/Components/VipBuyDialog.vue index 42bba85..08ac6ed 100644 --- a/src/components/TabsMenuElements/VipView/Components/VipBuyDialog.vue +++ b/src/components/TabsMenuElements/VipView/Components/VipBuyDialog.vue @@ -63,6 +63,7 @@ + @@ -77,10 +78,12 @@ import BuyMethodDisableDialog from "@/components/ActionDialogs/BuyMethodDisableD import DonationAlertsSvg from "@/components/Others/CustomSvg/DonationAlertsSvg.vue"; import PromocodeDialog from "@/components/TabsMenuElements/VipView/Components/PromocodeDialog.vue"; import PromocodeSvg from "@/components/Others/CustomSvg/PromocodeSvg.vue"; +import BuyVipInstruction from "@/components/ActionDialogs/Information/BuyVipInstruction.vue"; export default { name: 'VipBuyDialog', components: { + BuyVipInstruction, PromocodeSvg, PromocodeDialog, DonationAlertsSvg, BuyMethodDisableDialog, FreeVipDialog, AuthWindow, FreeSvg, SteamSvg, QiwiSvg}, @@ -98,13 +101,13 @@ export default { this.showBuyDialog = false; }, buyWithSteam() { - window.open("api/profile/current/buyvip?buy_type=steam" + Random.getRndWebAppend(), "_blank"); + this.$refs.vbd_bvi.showMe(true, "api/profile/current/buyvip?buy_type=steam" + Random.getRndWebAppend(), "steam"); }, buyWithQiwi(cost) { - window.open(`api/profile/current/buyvip?buy_type=qiwi&steam64=${this.$API.player.store.steamids.steam64}&cost=${cost}` + Random.getRndWebAppend(), "_blank") + this.$refs.vbd_bvi.showMe(true, `api/profile/current/buyvip?buy_type=qiwi&steam64=${this.$API.player.store.steamids.steam64}&cost=${cost}` + Random.getRndWebAppend(), "qiwi"); }, buyWithDA() { - window.open("api/profile/current/buyvip?buy_type=donationalerts" + Random.getRndWebAppend(), "_blank"); + this.$refs.vbd_bvi.showMe(true, "api/profile/current/buyvip?buy_type=donationalerts" + Random.getRndWebAppend(), "da"); }, buyWithFree() { this.$refs.vfd.getFreeVIP();