geer-builder 1.2.670 → 1.2.672
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/GCheckout.vue +2 -2
- package/package.json +1 -1
package/GCheckout.vue
CHANGED
|
@@ -139,7 +139,7 @@
|
|
|
139
139
|
<q-radio v-model="dragon_pay_choice" :val="onlines" />
|
|
140
140
|
</q-item-section>
|
|
141
141
|
<q-item-section style="display: block;">
|
|
142
|
-
<img style="display: inline-block; vertical-align: middle; width: 100px; margin-right: 10px;" :src="getPaymentLogo(onlines
|
|
142
|
+
<img style="display: inline-block; vertical-align: middle; width: 100px; margin-right: 10px;" :src="getPaymentLogo(onlines)" />
|
|
143
143
|
<q-item-label style="display: inline-block; vertical-align: middle;" caption>{{`${onlines.longName}`}}</q-item-label>
|
|
144
144
|
</q-item-section>
|
|
145
145
|
</q-item>
|
|
@@ -736,7 +736,7 @@ export default {
|
|
|
736
736
|
},
|
|
737
737
|
async getFreePackageList()
|
|
738
738
|
{
|
|
739
|
-
this.free_shipping = this.product_list.every((prod) => prod.product.hasOwnProperty('free_shipping_applied'
|
|
739
|
+
this.free_shipping = this.product_list.every( (prod) => prod.product.hasOwnProperty('free_shipping_applied') ? (prod.product.free_shipping_applied === true ? true : false ) : false );
|
|
740
740
|
console.log("free shipping: ",this.free_shipping);
|
|
741
741
|
if(this.product_list.length !== 1) return
|
|
742
742
|
if(this.product_list.length > 0 && !this.product_list[0].product.hasOwnProperty('membership_kit')) return
|