geer-builder 1.2.851 → 1.2.852
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/GBinaryWidget.vue +4 -3
- package/package.json +1 -1
package/GBinaryWidget.vue
CHANGED
|
@@ -11,15 +11,16 @@
|
|
|
11
11
|
<div class="label" v-if="is_company_success">Sales Matches Today</div>
|
|
12
12
|
<div class="label" v-if="is_company_ultrapro">Cycle Pair Count</div>
|
|
13
13
|
<div class="label" v-if="is_company_arkos">Match Sales</div>
|
|
14
|
+
<div class="label" v-if="is_digify">Match Today</div>
|
|
14
15
|
<div class="label" v-else>Pairs Today</div>
|
|
15
16
|
<div class="value text-primary">{{pairs_loading == false ? pairs_today : 0}} / {{binary_settings.pairs_per_day}}</div>
|
|
16
17
|
</div>
|
|
17
18
|
<div class="section-holder">
|
|
18
|
-
<div class="label">Left Points</div>
|
|
19
|
+
<div class="label">{{is_digify ? 'Left Sales' : 'Left Points'}}</div>
|
|
19
20
|
<div class="value">{{$_formatNumber(binary_type_settings == 'one' ? slot_info.points.binary_points_left : binary_type_settings == 'three' ? slot_info.points.binary_three_points_left : (slot_info.points.binary_two_points_left / (public_settings.hasOwnProperty('binary_divide') ? public_settings.binary_divide : 1) ), { decimal: 2 })}}</div>
|
|
20
21
|
</div>
|
|
21
22
|
<div class="section-holder">
|
|
22
|
-
<div class="label">Right Points</div>
|
|
23
|
+
<div class="label">{{is_digify ? 'Right Sales' : 'Right Points'}}</div>
|
|
23
24
|
<div class="value">{{$_formatNumber(binary_type_settings == 'one' ? slot_info.points.binary_points_right : binary_type_settings == 'three' ? slot_info.points.binary_three_points_right : (slot_info.points.binary_two_points_right / (public_settings.hasOwnProperty('binary_divide') ? public_settings.binary_divide : 1) ), { decimal: 2 })}}</div>
|
|
24
25
|
</div>
|
|
25
26
|
</div>
|
|
@@ -142,7 +143,7 @@ export default
|
|
|
142
143
|
public_settings:{},
|
|
143
144
|
unplaced_slot_count:0,
|
|
144
145
|
}),
|
|
145
|
-
props:['genealogy', 'history', 'binary_history' , 'manual_place','binary_history_two', 'binary_log','is_company_success', 'is_company_ultrapro' , 'is_company_arkos'],
|
|
146
|
+
props:['genealogy', 'history', 'binary_history' , 'manual_place','binary_history_two', 'binary_log','is_company_success', 'is_company_ultrapro' , 'is_company_arkos', 'is_digify'],
|
|
146
147
|
components: { GCard, Genealogy, PairingHistory, BinaryHistory, PointHistory,ManualPlaceDialog },
|
|
147
148
|
async mounted()
|
|
148
149
|
{
|