geer-builder 1.2.594 → 1.2.597

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/GCompanyToken.vue CHANGED
@@ -11,7 +11,7 @@
11
11
  <div class="label">
12
12
  <q-btn size="12px" class="full-width q-pa-sm text-primary" flat>
13
13
  <q-icon class="q-mr-sm" name="fas fa-money-check" size="16px"></q-icon>
14
- <div>Use Token</div>
14
+ <div class="token-label">Redeem Reward Points</div>
15
15
  </q-btn>
16
16
  </div>
17
17
  </div>
@@ -19,7 +19,7 @@
19
19
  <div class="label">
20
20
  <q-btn size="12px" class="full-width q-pa-sm text-primary" flat>
21
21
  <q-icon class="q-mr-sm" name="fas fa-money-check" size="16px"></q-icon>
22
- <div>View Token History</div>
22
+ <div class="token-label">View Reward Points History</div>
23
23
  </q-btn>
24
24
  </div>
25
25
  </div>
@@ -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
  {
@@ -5,20 +5,32 @@
5
5
  <q-space />
6
6
  <q-btn dense flat icon='close' v-close-popup><q-tooltip content-class='bg-white text-primary'>Close</q-tooltip></q-btn>
7
7
  </q-bar>
8
-
9
- <div class="plan" style="border-bottom: 1px dashed #eee;" v-for="(plan, i) in plan_list" :key="i">
10
- <div class="desc text-center q-pa-lg">
11
- <h6 style="margin:0 auto">Plan Name: {{plan.name}} </h6>
12
- <h6 style="margin:0 auto">Required Token: {{plan.token_required}} </h6>
13
- <h6 style="margin:0 auto">Lock-in Days: {{plan.total_days}} </h6>
14
- <h6 style="margin:0 auto">Days to earn: Every {{plan.days_to_earn}} days </h6>
15
- <h6 style="margin:0 auto">Amount to earned: {{ $_formatNumber(plan.earned_amount, { decimal: 2}) }} </h6>
16
- </div>
17
- <div class="button-holder text-center q-pa-md">
18
- <q-btn size="12px" @click="claimPlan(plan,i)" class="text-white bg-primary investment__actions-button q-pa-sm">
19
- <q-icon class="q-mr-sm" name="fas fa-chart-line" size="16px"></q-icon>
20
- <div>Claim</div>
21
- </q-btn>
8
+ <div class="plan-holder">
9
+ <div class="plan" style="border-bottom: 1px dashed #eee;" v-for="(plan, i) in plan_list" :key="i">
10
+ <div class="claim-grid desc text-center q-pa-lg">
11
+ <div class="label">Plan Name:</div>
12
+ <div class="value">{{plan.name}}</div>
13
+ <div class="label">Required Token:</div>
14
+ <div class="value">{{plan.token_required}}</div>
15
+ <div class="label">Lock-in Days:</div>
16
+ <div class="value">{{plan.total_days}}</div>
17
+ <div class="label">Days to earn:</div>
18
+ <div class="value">{{plan.days_to_earn}}</div>
19
+ <div class="label">Amount to earned:</div>
20
+ <div class="value">{{ $_formatNumber(plan.earned_amount, { decimal: 2}) }} </div>
21
+
22
+ <!-- <h6 style="margin:0 auto">Plan Name: {{plan.name}} </h6> -->
23
+ <!-- <h6 style="margin:0 auto">Required Token: {{plan.token_required}} </h6>
24
+ <h6 style="margin:0 auto">Lock-in Days: {{plan.total_days}} </h6>
25
+ <h6 style="margin:0 auto">Days to earn: Every {{plan.days_to_earn}} days </h6>
26
+ <h6 style="margin:0 auto">Amount to earned: {{ $_formatNumber(plan.earned_amount, { decimal: 2}) }} </h6> -->
27
+ </div>
28
+ <div class="button-holder text-center q-pa-md">
29
+ <q-btn size="12px" @click="claimPlan(plan,i)" class="claim-btn text-white bg-primary investment__actions-button q-pa-sm">
30
+ <q-icon class="q-mr-sm claim-icon" name="fas fa-chart-line" size="16px"></q-icon>
31
+ <div class="token-claim">Claim</div>
32
+ </q-btn>
33
+ </div>
22
34
  </div>
23
35
  </div>
24
36
  </q-card>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "geer-builder",
3
- "version": "1.2.594",
3
+ "version": "1.2.597",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {