geer-builder 1.2.862 → 1.2.864
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/GProductPage.vue +2 -1
- package/GSlotWallet.vue +4 -0
- package/package.json +1 -1
package/GProductPage.vue
CHANGED
|
@@ -210,7 +210,7 @@
|
|
|
210
210
|
<q-btn no-caps class="buy-now q-mr-sm" color="primary" unelevated @click="buyNow">Buy Now</q-btn> -->
|
|
211
211
|
</div>
|
|
212
212
|
|
|
213
|
-
<div v-if="this.user_info && this.user_info.hasOwnProperty('active_slot')" class="share-holder">
|
|
213
|
+
<div v-if="this.user_info && this.user_info.hasOwnProperty('active_slot') && hide_replicated_link != true" class="share-holder">
|
|
214
214
|
<!-- <template v-if="is_sharing_is_available"> -->
|
|
215
215
|
<div class="share">Replicated Link: </div>
|
|
216
216
|
<div class="share-icons" style="display:flex">
|
|
@@ -420,6 +420,7 @@ export default {
|
|
|
420
420
|
'show_discount_badge',
|
|
421
421
|
'show_merchant_discount_badge',
|
|
422
422
|
'show_only',
|
|
423
|
+
'hide_replicated_link',
|
|
423
424
|
'show_pv'
|
|
424
425
|
],
|
|
425
426
|
computed:
|
package/GSlotWallet.vue
CHANGED
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
</div>
|
|
36
36
|
<div v-else class="section-holder">
|
|
37
37
|
<div class="label" v-if="is_company_ultrapro">Accumulated Earnings</div>
|
|
38
|
+
<div class="label" v-else-if="change_label_1">{{change_label_1}}</div>
|
|
38
39
|
<div class="label" v-else>Total Earned</div>
|
|
39
40
|
<div class="value">{{ main_currency }} {{ $_formatNumber(current_slot_info.total_earned, { decimal: 2 }) }}</div>
|
|
40
41
|
</div>
|
|
@@ -85,6 +86,7 @@
|
|
|
85
86
|
<q-icon class="q-mr-sm" name="fas fa-wallet" size="16px"></q-icon>
|
|
86
87
|
</div>
|
|
87
88
|
<div v-if="is_company_ultrapro">Wallet History</div>
|
|
89
|
+
<div v-else-if="change_label_2">{{change_label_2}}</div>
|
|
88
90
|
<div v-else>Wallet Logs</div>
|
|
89
91
|
</q-btn>
|
|
90
92
|
</div>
|
|
@@ -285,6 +287,8 @@ export default
|
|
|
285
287
|
mixins: [GlobalMixins],
|
|
286
288
|
props:{
|
|
287
289
|
binary_type: String,
|
|
290
|
+
change_label_1: String,
|
|
291
|
+
change_label_2: String,
|
|
288
292
|
vortex: Boolean,
|
|
289
293
|
is_teslab: Boolean,
|
|
290
294
|
is_company_success: Boolean,
|