Browse Source

disable donates

master
gsd 1 year ago
parent
commit
c310683138
  1. 22
      src/components/ActionDialogs/BuyMethodDisableDialog.vue
  2. 11
      src/components/TabsMenuElements/VipView/Components/VipBuyDialog.vue

22
src/components/ActionDialogs/BuyMethodDisableDialog.vue

@ -0,0 +1,22 @@
<template>
<md-dialog :md-active.sync="show" @close="show=false">
<div class="md-layout md-alignment-bottom-center">
<div class="md-layout-item md-size-100 md-small-size-100 md-alignment-bottom-center rounded-only">
<p style="padding-right: 5%; padding-left: 5%">В настоящий момент данный способ покупки выключен, попробуй вернуться позже...</p>
<md-button style="float: right" class="btn-colored" v-on:click="show=false">Ну и ладно...</md-button>
</div>
</div>
</md-dialog>
</template>
<script>
export default {
name: "BuyMethodDisableDialog",
data: () => ({
show: false
}),
methods: {
showMe(b) {this.show = b;}
}
}
</script>

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

@ -24,12 +24,12 @@
</div> </div>
<hr> <hr>
<div style="justify-content: center; display: flex; margin: 2.5% 0%" v-if="$API.player.auth('steam')"> <div style="justify-content: center; display: flex; margin: 2.5% 0%" v-if="$API.player.auth('steam')">
<div style="max-width: 40%; float: left;" class="clickable" v-if="price.period !=='free'" v-on:click="buyWithQiwi(price.money_price)"> <div style="max-width: 40%; float: left;" class="clickable" v-if="price.period !=='free'" v-on:click="price.qiwi===true?buyWithQiwi(price.money_price):showBMDD()">
<QiwiSvg class="img-vipextra"/> <QiwiSvg class="img-vipextra"/>
<p class="p-vipbuy" style="margin-bottom: -5%">{{price.money_price}} рублей</p> <p class="p-vipbuy" style="margin-bottom: -5%">{{price.money_price}} рублей</p>
<p class="p-vipbuy-extra">В этом году купили {{getStat4('qiwi', price.period)}} раз</p> <p class="p-vipbuy-extra">В этом году купили {{getStat4('qiwi', price.period)}} раз</p>
</div> </div>
<div style="max-width: 40%; float: left;" class="clickable" v-if="price.period !=='free'" v-on:click="buyWithSteam()"> <div style="max-width: 40%; float: left;" class="clickable" v-if="price.period !=='free'" v-on:click="price.steam===true?buyWithSteam():showBMDD()">
<SteamSvg class="img-vipextra"/> <SteamSvg class="img-vipextra"/>
<p class="p-vipbuy" style="margin-bottom: -5%">{{price.item_price}}</p> <p class="p-vipbuy" style="margin-bottom: -5%">{{price.item_price}}</p>
<p class="p-vipbuy-extra">В этом году купили {{getStat4('steam', price.period)}} раз</p> <p class="p-vipbuy-extra">В этом году купили {{getStat4('steam', price.period)}} раз</p>
@ -51,6 +51,7 @@
</div> </div>
</div> </div>
<AuthWindow ref="aw" /> <AuthWindow ref="aw" />
<BuyMethodDisableDialog ref="bmdd" />
</md-dialog> </md-dialog>
</template> </template>
@ -61,10 +62,11 @@ 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"; import Random from "@/api/Random";
import BuyMethodDisableDialog from "@/components/ActionDialogs/BuyMethodDisableDialog.vue";
export default { export default {
name: 'VipBuyDialog', name: 'VipBuyDialog',
components: {FreeVipDialog, AuthWindow, FreeSvg, SteamSvg, QiwiSvg}, components: {BuyMethodDisableDialog, FreeVipDialog, AuthWindow, FreeSvg, SteamSvg, QiwiSvg},
data: () => ({ data: () => ({
showBuyDialog: false showBuyDialog: false
}), }),
@ -94,6 +96,9 @@ export default {
try { try {
return this.$API.stats['donate']['year']['statistic'][service][period]; return this.$API.stats['donate']['year']['statistic'][service][period];
} catch (e) {return 0;} } catch (e) {return 0;}
},
showBMDD() {
this.$refs.bmdd.showMe(true);
} }
} }
} }

Loading…
Cancel
Save