geer-builder 1.2.668 → 1.2.670
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/GCheckout.vue +1 -5
- package/GCodeVault.vue +2 -1
- package/GSlotWallet.vue +10 -0
- package/components/GSlotWallet/WalletLogsDialog.vue +20 -11
- package/dialogs/AddSlotDialog.vue +6 -0
- package/package.json +1 -1
package/GCheckout.vue
CHANGED
|
@@ -722,17 +722,13 @@ export default {
|
|
|
722
722
|
DPWL: 'https://load.dragonpay.ph/images/dp-logo.png',
|
|
723
723
|
PBCM: 'https://manilastandard.net/wp-content/uploads/2019/07/61b9c_pbcom.png',
|
|
724
724
|
CC: 'https://i.ibb.co/brMvw4b/cc.png',
|
|
725
|
-
|
|
725
|
+
BLES: 'https://i.ibb.co/0mRhznG/billease.png'
|
|
726
726
|
};
|
|
727
727
|
|
|
728
728
|
if (logos[data.procId])
|
|
729
729
|
{
|
|
730
730
|
return logos[data.procId];
|
|
731
731
|
}
|
|
732
|
-
else if (logos[data.longName])
|
|
733
|
-
{
|
|
734
|
-
return logos[data.longName];
|
|
735
|
-
}
|
|
736
732
|
else if (data.logo)
|
|
737
733
|
{
|
|
738
734
|
return data.logo;
|
package/GCodeVault.vue
CHANGED
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
</q-dialog>
|
|
83
83
|
|
|
84
84
|
<q-dialog :maximized="$q.platform.is.mobile" transition-show="slide-up" transition-hide="slide-down" v-model="is_open_add_slot_dialog">
|
|
85
|
-
<add-slot-dialog :code="code" :lead_info="lead_info" @closeDialog="is_open_add_slot_dialog = false"></add-slot-dialog>
|
|
85
|
+
<add-slot-dialog :is_enable_all_sponsor="enable_code_add_all_sponsor" :code="code" :lead_info="lead_info" @closeDialog="is_open_add_slot_dialog = false"></add-slot-dialog>
|
|
86
86
|
</q-dialog>
|
|
87
87
|
|
|
88
88
|
|
|
@@ -132,6 +132,7 @@ export default
|
|
|
132
132
|
}),
|
|
133
133
|
props:
|
|
134
134
|
{
|
|
135
|
+
enable_code_add_all_sponsor:Boolean,
|
|
135
136
|
lead_info:Object,
|
|
136
137
|
is_company_ultrapro:Boolean
|
|
137
138
|
},
|
package/GSlotWallet.vue
CHANGED
|
@@ -42,6 +42,11 @@
|
|
|
42
42
|
<div class="label">Binary CD</div>
|
|
43
43
|
<div class="value">{{ main_currency }} {{ $_formatNumber(current_slot_info.special_cd_wallet, { decimal: 2 }) }}</div>
|
|
44
44
|
</div>
|
|
45
|
+
<div class="button-holder" style="cursor:pointer;" v-if="current_slot_info.hasOwnProperty('special_cd_wallet') && current_slot_info.special_cd_wallet < 0" @click="is_wallet_binary_cd_logs=true;">
|
|
46
|
+
<q-btn size="12px" class="full-width q-pa-sm text-primary" flat>
|
|
47
|
+
<div>Binary Earnings</div>
|
|
48
|
+
</q-btn>
|
|
49
|
+
</div>
|
|
45
50
|
<div class="q-pt-sm section-holder" v-if="is_company_qdy == false">
|
|
46
51
|
<div class="label" v-if="is_company_ultrapro">Slot Count Limit</div>
|
|
47
52
|
<div class="label" v-else>Slot Limit</div>
|
|
@@ -217,6 +222,10 @@
|
|
|
217
222
|
<q-dialog v-model="is_wallet_logs_dialog_open" :maximized="true">
|
|
218
223
|
<wallet-logs-dialog/>
|
|
219
224
|
</q-dialog>
|
|
225
|
+
|
|
226
|
+
<q-dialog v-model="is_wallet_binary_cd_logs">
|
|
227
|
+
<wallet-logs-dialog :hide_search="true" :special_binary="true" />
|
|
228
|
+
</q-dialog>
|
|
220
229
|
|
|
221
230
|
<q-dialog v-model="is_up_coin_dialog_open" :maximized="true">
|
|
222
231
|
<up-coin-dialog/>
|
|
@@ -276,6 +285,7 @@ export default
|
|
|
276
285
|
({
|
|
277
286
|
is_binary_pv_combination: false,
|
|
278
287
|
is_rc_logs_dialog_open: false,
|
|
288
|
+
is_wallet_binary_cd_logs: false,
|
|
279
289
|
is_binary_history_dialog_open: false,
|
|
280
290
|
is_open_add_slot_dialog: false,
|
|
281
291
|
is_reactivation_fee_avail: false,
|
|
@@ -95,7 +95,7 @@ export default
|
|
|
95
95
|
{
|
|
96
96
|
filters: { },
|
|
97
97
|
components: { },
|
|
98
|
-
props:['hide_search', 'mbot'],
|
|
98
|
+
props:['hide_search', 'mbot', 'special_binary'],
|
|
99
99
|
data:() =>(
|
|
100
100
|
{
|
|
101
101
|
is_wallet_convert_open:false,
|
|
@@ -230,17 +230,26 @@ export default
|
|
|
230
230
|
},
|
|
231
231
|
async getTableData()
|
|
232
232
|
{
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
233
|
+
if(this.special_binary == true)
|
|
234
|
+
{
|
|
235
|
+
// await this.$bind("table_data", new DB_SLOT_LOG().collection().where("recipient_id", "==", this.user_info.active_slot).orderBy('convert_message', 'desc').orderBy('created_date', 'desc'));
|
|
236
|
+
await this.$bind("table_data", new DB_SLOT_LOG().collection().where("is_special_cd","==",true).where("recipient_id", "==", this.user_info.active_slot).orderBy('created_date', 'desc'));
|
|
237
|
+
this.table_loading = false;
|
|
238
|
+
}
|
|
239
|
+
else
|
|
240
|
+
{
|
|
241
|
+
// await this.$bind("table_data", new DB_SLOT_LOG().collection().where("recipient_id", "==", this.user_info.active_slot).orderBy('convert_message', 'desc').orderBy('created_date', 'desc'));
|
|
242
|
+
await this.$bind("table_data", new DB_SLOT_LOG().collection().where("recipient_id", "==", this.user_info.active_slot).orderBy('created_date', 'desc'));
|
|
243
|
+
for( var i = 0; i < this.table_data.length; i++)
|
|
238
244
|
{
|
|
239
|
-
this.table_data.
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
245
|
+
if (this.table_data[i].temp_wallet_message)
|
|
246
|
+
{
|
|
247
|
+
this.table_data.splice(i, 1);
|
|
248
|
+
i--;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
this.table_loading = false;
|
|
252
|
+
}
|
|
244
253
|
},
|
|
245
254
|
},
|
|
246
255
|
computed: {
|
|
@@ -158,6 +158,7 @@ export default
|
|
|
158
158
|
components: { GRegistration },
|
|
159
159
|
props:
|
|
160
160
|
{
|
|
161
|
+
is_enable_all_sponsor: Boolean,
|
|
161
162
|
is_show: Boolean,
|
|
162
163
|
code: Object,
|
|
163
164
|
lead_info : Object
|
|
@@ -230,6 +231,11 @@ export default
|
|
|
230
231
|
this.fixed_sponsor = true;
|
|
231
232
|
this.field.sponsor = this.user_info.sponsor;
|
|
232
233
|
}
|
|
234
|
+
|
|
235
|
+
if(this.is_enable_all_sponsor == true)
|
|
236
|
+
{
|
|
237
|
+
this.fixed_sponsor = false;
|
|
238
|
+
}
|
|
233
239
|
},
|
|
234
240
|
async verifyCode()
|
|
235
241
|
{
|