diff --git a/src/components/ActionDialogs/BuyMethodDisableDialog.vue b/src/components/ActionDialogs/BuyMethodDisableDialog.vue new file mode 100644 index 0000000..0e28565 --- /dev/null +++ b/src/components/ActionDialogs/BuyMethodDisableDialog.vue @@ -0,0 +1,22 @@ + + + \ 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 b7c8e05..ffede10 100644 --- a/src/components/TabsMenuElements/VipView/Components/VipBuyDialog.vue +++ b/src/components/TabsMenuElements/VipView/Components/VipBuyDialog.vue @@ -24,12 +24,12 @@
-
+

{{price.money_price}} рублей

В этом году купили {{getStat4('qiwi', price.period)}} раз

-
+

{{price.item_price}}

В этом году купили {{getStat4('steam', price.period)}} раз

@@ -51,6 +51,7 @@
+ @@ -61,10 +62,11 @@ import FreeSvg from "@/components/Others/CustomSvg/FreeSvg.vue"; import AuthWindow from "@/components/Others/Auth/AuthWindow.vue"; import FreeVipDialog from "@/components/TabsMenuElements/VipView/Components/FreeVipDialog.vue"; import Random from "@/api/Random"; +import BuyMethodDisableDialog from "@/components/ActionDialogs/BuyMethodDisableDialog.vue"; export default { name: 'VipBuyDialog', - components: {FreeVipDialog, AuthWindow, FreeSvg, SteamSvg, QiwiSvg}, + components: {BuyMethodDisableDialog, FreeVipDialog, AuthWindow, FreeSvg, SteamSvg, QiwiSvg}, data: () => ({ showBuyDialog: false }), @@ -94,6 +96,9 @@ export default { try { return this.$API.stats['donate']['year']['statistic'][service][period]; } catch (e) {return 0;} + }, + showBMDD() { + this.$refs.bmdd.showMe(true); } } }