|
@ -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); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|