geer-builder 1.2.758 → 1.2.760
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/GLogin.vue +3 -2
- package/GNoSlot.vue +1 -1
- package/GRegistration.vue +2 -1
- package/dialogs/AddSlotDialog.vue +1 -1
- package/package.json +1 -1
package/GLogin.vue
CHANGED
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
</div>
|
|
56
56
|
<q-dialog v-if="!user_info" v-model="is_registration_dialog">
|
|
57
57
|
<div style="background-color:white;width:500px;padding:30px;">
|
|
58
|
-
<g-registration @success="emitToLogin"></g-registration>
|
|
58
|
+
<g-registration :is_heartzone="is_heartzone" @success="emitToLogin"></g-registration>
|
|
59
59
|
</div>
|
|
60
60
|
</q-dialog>
|
|
61
61
|
<q-dialog v-if="!user_info" v-model="is_forgot_password">
|
|
@@ -104,7 +104,8 @@ export default
|
|
|
104
104
|
hide_registration: Boolean,
|
|
105
105
|
mbot:Boolean,
|
|
106
106
|
show_pass_button:Boolean,
|
|
107
|
-
new_create_account_form:Boolean
|
|
107
|
+
new_create_account_form:Boolean,
|
|
108
|
+
is_heartzone:Boolean
|
|
108
109
|
|
|
109
110
|
},
|
|
110
111
|
components: { GRegistration,GForgotPassword },
|
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/GRegistration.vue
CHANGED
|
@@ -213,6 +213,7 @@ export default
|
|
|
213
213
|
this.mbot = true;
|
|
214
214
|
this.val = true;
|
|
215
215
|
}
|
|
216
|
+
|
|
216
217
|
if(this.$route.query.hasOwnProperty('sponsor') || sessionStorage.referral_slot_code)
|
|
217
218
|
{
|
|
218
219
|
if(this.$route.query.sponsor)
|
|
@@ -236,7 +237,7 @@ export default
|
|
|
236
237
|
this.form_data.sponsor = this.terms_and_conditions.registration_sponsor.default_sponsor ? this.terms_and_conditions.registration_sponsor.default_sponsor : null;
|
|
237
238
|
}
|
|
238
239
|
}
|
|
239
|
-
|
|
240
|
+
|
|
240
241
|
if(this.form_data.sponsor && this.is_heartzone)
|
|
241
242
|
{
|
|
242
243
|
let callbackgetName = await this.$_fbCall('frontGetSponsorName', this.form_data);
|
|
@@ -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">
|