geer-builder 1.2.953 → 1.2.955
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/GNoSlotDashboardPackage.vue +2 -2
- package/GProductList.vue +1 -1
- package/package.json +1 -1
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
<div :style="`background-image: url(${field.primary_picture ? field.primary_picture : public_settings.default_product_picture ? public_settings.default_product_picture : 'https://bvusolution.com/images/product-no-image.jpg'});height:200px;width:230px;background-size:80%`" class="image product-list-image" :id="i">
|
|
9
9
|
</div>
|
|
10
10
|
<div class="prod_name product-list-name" :style="'max-width:'+width+';'">{{field.product_name}}</div>
|
|
11
|
-
<!-- <div class="prod_description">{{field.description}}</div> -->
|
|
12
11
|
<div class="prod_price price">{{main_currency}} {{$_formatNumber(field.selling_price, { decimal: 2})}}</div>
|
|
12
|
+
<div class="prod_description">{{field.short_description ? field.short_description : '\u00A0'}}</div>
|
|
13
13
|
<div><q-btn class="full-width" :label="button_label" color="primary" @click="showMore(field)"></q-btn></div>
|
|
14
14
|
<!-- <div style="text-decoration:underline;color:blue;cursor:pointer;" @click="showMore(field)">Show More</div> -->
|
|
15
15
|
</div>
|
|
@@ -155,7 +155,7 @@ export default {
|
|
|
155
155
|
background: red;
|
|
156
156
|
border-radius: 5px ;
|
|
157
157
|
transition: all .2s ease-in-out;
|
|
158
|
-
|
|
158
|
+
|
|
159
159
|
padding:5px;
|
|
160
160
|
margin:5px;
|
|
161
161
|
display:inline-block;
|
package/GProductList.vue
CHANGED
|
@@ -49,7 +49,6 @@
|
|
|
49
49
|
<div class="commission-value">none</div>
|
|
50
50
|
</div>
|
|
51
51
|
</template>
|
|
52
|
-
<div v-if="show_description" class="product-desc" v-html="field.description"></div>
|
|
53
52
|
<div class="product-list-detail" v-if="sort_by!='gc_price'">
|
|
54
53
|
<div class="product-list-row">
|
|
55
54
|
<!-- <div class="prod_price price" :class="field.user_discount>0 ? 'has-discount' : ''">{{main_currency}} {{$_formatNumber(field.original_price, { decimal: 2})}}{{field.user}}</div> -->
|
|
@@ -63,6 +62,7 @@
|
|
|
63
62
|
<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
63
|
<div v-else-if="!hide_gc_notice" class="gc_price gc">Not Purchasable by {{ (public_settings && public_settings.gc_label) || 'GC' }}</div>
|
|
65
64
|
</template>
|
|
65
|
+
<div v-if="show_description" class="product-desc" v-html="field.short_description ? field.short_description : ' '"></div>
|
|
66
66
|
<div class="add-cart" v-if="show_button">View Product</div>
|
|
67
67
|
</div>
|
|
68
68
|
<div v-else class="prod_price price">{{ (public_settings && public_settings.gc_label) || 'GC' }} {{$_formatNumber(field.gc_price, { decimal: 2})}}</div>
|