geer-builder 1.2.757 → 1.2.759
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/GNoSlot.vue +1 -1
- package/GSlotChange.vue +1 -0
- package/dialogs/AddSlotDialog.vue +1 -1
- package/package.json +1 -1
package/GNoSlot.vue
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
</g-card>
|
|
23
23
|
|
|
24
24
|
<q-dialog :maximized="$q.platform.is.mobile" transition-show="slide-up" transition-hide="slide-down" v-model="is_open_add_slot_dialog">
|
|
25
|
-
<add-slot-dialog @closeDialog="is_open_add_slot_dialog = false"></add-slot-dialog>
|
|
25
|
+
<add-slot-dialog @closeTransactionComplete="$emit('closeTransactionCompleteNoSlot')" @closeDialog="is_open_add_slot_dialog = false"></add-slot-dialog>
|
|
26
26
|
</q-dialog>
|
|
27
27
|
</div>
|
|
28
28
|
<!-- CODE VAULT -->
|
package/GSlotChange.vue
CHANGED
|
@@ -78,6 +78,7 @@ export default
|
|
|
78
78
|
let callbackCreateAccount = await this.$_fbCall('memberUseSlot', { slot_code: slot.slot_code });
|
|
79
79
|
|
|
80
80
|
localStorage.setItem("daily_check_pv_date",null);
|
|
81
|
+
sessionStorage.setItem('is_refresh_needed', true);
|
|
81
82
|
setTimeout(() =>
|
|
82
83
|
{
|
|
83
84
|
this.$q.loading.hide();
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
<div><b>Congratulations!</b></div>
|
|
88
88
|
<div class="q-pt-sm q-mr-lg q-ml-lg">Your slot has been successfully created!</div>
|
|
89
89
|
</div>
|
|
90
|
-
<q-btn v-close-popup type="button" :loading="submit_loading" unelevated class="full-width q-mt-md" color="primary"><q-icon name="fa fa-check q-mr-sm" size="14px"></q-icon> Transaction Complete</q-btn>
|
|
90
|
+
<q-btn v-close-popup type="button" :loading="submit_loading" unelevated class="full-width q-mt-md" color="primary" @click="$emit('closeTransactionComplete')"><q-icon name="fa fa-check q-mr-sm" size="14px"></q-icon> Transaction Complete</q-btn>
|
|
91
91
|
</q-step>
|
|
92
92
|
</q-stepper>
|
|
93
93
|
<q-dialog v-model="is_open_registration_dialog_open">
|