geer-builder 1.2.942 → 1.2.943
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/GSlotWallet.vue +6 -1
- package/package.json +1 -1
package/GSlotWallet.vue
CHANGED
|
@@ -46,6 +46,11 @@
|
|
|
46
46
|
<div>Wallet Logs</div>
|
|
47
47
|
</q-btn>
|
|
48
48
|
</div>
|
|
49
|
+
<template v-if="is_heartzone">
|
|
50
|
+
<div class="label q-mt-sm">Wallet</div>
|
|
51
|
+
<div class="value" v-if="current_slot_info.wallet >= 0">{{ main_currency }} {{ $_formatNumber(current_slot_info.wallet, { decimal: 2 }) }}</div>
|
|
52
|
+
<div class="value" v-else>Balance:<span style="color:red">{{ main_currency }} {{ $_formatNumber(current_slot_info.wallet, { decimal: 2 }) }}</span></div>
|
|
53
|
+
</template>
|
|
49
54
|
</div>
|
|
50
55
|
<div v-if="current_slot_info.hasOwnProperty('special_cd_wallet') && current_slot_info.special_cd_wallet < 0" class="section-holder">
|
|
51
56
|
<div class="label">Binary CD</div>
|
|
@@ -81,7 +86,7 @@
|
|
|
81
86
|
|
|
82
87
|
|
|
83
88
|
</div>
|
|
84
|
-
<div class="wallet-grid" :style="is_company_ultrapro? 'display:block': temp_wallet ? 'grid-template-columns: auto' : 'grid-template-columns:1fr 1fr' && current_slot_info.points.hasOwnProperty('gc')">
|
|
89
|
+
<div class="wallet-grid" :style="is_company_ultrapro? 'display:block': is_heartzone ? 'display:none' : temp_wallet ? 'grid-template-columns: auto' : 'grid-template-columns:1fr 1fr' && current_slot_info.points.hasOwnProperty('gc')">
|
|
85
90
|
<div class="section-holder">
|
|
86
91
|
<div class="label" v-if="is_company_success">Central Wallet</div>
|
|
87
92
|
<div class="label" v-if="is_company_ultrapro">Available Wallet Funds</div>
|