geer-builder 1.2.938 → 1.2.939
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/GProductList.vue +5 -3
- package/package.json +1 -1
package/GProductList.vue
CHANGED
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
</div>
|
|
62
62
|
<template v-if="!show_only">
|
|
63
63
|
<div v-if="field.gc_price>0" class="gc_price gc">{{ (public_settings && public_settings.gc_label) || 'GC' }} {{$_formatNumber(field.gc_price, { decimal: 2})}}</div>
|
|
64
|
-
<div v-else class="gc_price gc">Not Purchasable by {{ (public_settings && public_settings.gc_label) || 'GC' }}</div>
|
|
64
|
+
<div v-else-if="!hide_gc_notice" class="gc_price gc">Not Purchasable by {{ (public_settings && public_settings.gc_label) || 'GC' }}</div>
|
|
65
65
|
</template>
|
|
66
66
|
<div class="add-cart" v-if="show_button">View Product</div>
|
|
67
67
|
</div>
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
{{field.merchant_details.pickup_address.city.name}}
|
|
88
88
|
</div>
|
|
89
89
|
</div>
|
|
90
|
-
<div class="merchant-details" v-else>
|
|
90
|
+
<div class="merchant-details" v-else-if="!hide_address_notice">
|
|
91
91
|
<div class="merchant-city">
|
|
92
92
|
No Address Set
|
|
93
93
|
</div>
|
|
@@ -147,7 +147,9 @@ export default {
|
|
|
147
147
|
is_membership_only:Boolean,
|
|
148
148
|
reseller_commission:Boolean,
|
|
149
149
|
show_merchant_details:Boolean,
|
|
150
|
-
view_maintenance_product:Boolean
|
|
150
|
+
view_maintenance_product:Boolean,
|
|
151
|
+
hide_gc_notice:Boolean,
|
|
152
|
+
hide_address_notice:Boolean
|
|
151
153
|
|
|
152
154
|
},
|
|
153
155
|
data: () =>
|