geer-builder 1.2.596 → 1.2.599
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/GProductCode.vue
CHANGED
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
<div class="group">
|
|
20
20
|
<div class="label">Sale ID</div>
|
|
21
21
|
<div class="value">{{ code.sale_id }}</div>
|
|
22
|
-
<div class="label">Expiration</div>
|
|
23
|
-
<div class="value text-red">{{ $_formatDate(code.expiration_date, 'MMMM, D YYYY') }}</div>
|
|
22
|
+
<!-- <div class="label">Expiration</div>
|
|
23
|
+
<div class="value text-red">{{ $_formatDate(code.expiration_date, 'MMMM, D YYYY') }}</div> -->
|
|
24
24
|
</div>
|
|
25
25
|
<div class="group">
|
|
26
26
|
<div class="label">Code</div>
|
package/GReplicatedLink.vue
CHANGED
|
@@ -23,7 +23,7 @@ export default
|
|
|
23
23
|
name: "GReferralLinkComponent",
|
|
24
24
|
components: { },
|
|
25
25
|
mixins: [GlobalMixins],
|
|
26
|
-
props:['ref_link', 'mbot', 'is_company_ultrapro'],
|
|
26
|
+
props:['ref_link', 'mbot', 'is_company_ultrapro', 'registration'],
|
|
27
27
|
filters: { },
|
|
28
28
|
data:() =>(
|
|
29
29
|
{
|
|
@@ -52,6 +52,10 @@ export default
|
|
|
52
52
|
{
|
|
53
53
|
this.replicated_link = `https://${this.link}/#/registration?sponsor=${this.current_slot_info.slot_code}`;
|
|
54
54
|
}
|
|
55
|
+
if(this.registration)
|
|
56
|
+
{
|
|
57
|
+
this.replicated_link = `https://${this.link}/#/registration?sponsor=${this.current_slot_info.slot_code}`;
|
|
58
|
+
}
|
|
55
59
|
}
|
|
56
60
|
else
|
|
57
61
|
{
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
<div class="label">Email</div>
|
|
30
30
|
<div class="value">{{this.code_detail.purchased_by.email}}</div>
|
|
31
31
|
|
|
32
|
-
<div class="label">Expiration Date</div>
|
|
33
|
-
<div class="value">{{$_formatDate(this.code_detail.expiration_date, 'MMMM, D YYYY')}}</div>
|
|
32
|
+
<!-- <div class="label">Expiration Date</div>
|
|
33
|
+
<div class="value">{{$_formatDate(this.code_detail.expiration_date, 'MMMM, D YYYY')}}</div> -->
|
|
34
34
|
</div>
|
|
35
35
|
</div>
|
|
36
36
|
<div class="button">
|
|
@@ -56,10 +56,10 @@
|
|
|
56
56
|
<div class="breakdown-value">{{ code.points.up_coin }}</div>
|
|
57
57
|
</div>
|
|
58
58
|
|
|
59
|
-
<div class="breakdowns">
|
|
59
|
+
<!-- <div class="breakdowns">
|
|
60
60
|
<div class="breakdown-label">Expiration Date</div>
|
|
61
61
|
<div class="breakdown-value">{{$_formatDate(this.code.expiration_date, 'MMMM, D YYYY')}}</div>
|
|
62
|
-
</div>
|
|
62
|
+
</div> -->
|
|
63
63
|
</div>
|
|
64
64
|
|
|
65
65
|
<q-btn @click="confirmDetails()" 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> Confirm Details</q-btn>
|