geer-builder 1.2.620 → 1.2.621
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 +1 -1
- package/GProductList.vue +2 -2
- package/package.json +1 -1
package/GCheckout.vue
CHANGED
|
@@ -640,7 +640,7 @@ export default {
|
|
|
640
640
|
async getFreePackageList()
|
|
641
641
|
{
|
|
642
642
|
if(this.product_list.length !== 1) return
|
|
643
|
-
if(this.product_list.length > 0 && !this.product_list[0].product.
|
|
643
|
+
if(this.product_list.length > 0 && !this.product_list[0].product.hasOwnProperty('membership_kit')) return
|
|
644
644
|
if(this.product_list[0].product.membership_kit.hasOwnProperty('free_shipping') && this.product_list[0].product.membership_kit.free_shipping) this.package_free_shipping = true;
|
|
645
645
|
console.log('Free Shipping');
|
|
646
646
|
|
package/GProductList.vue
CHANGED
|
@@ -227,8 +227,8 @@ export default {
|
|
|
227
227
|
},
|
|
228
228
|
async user_info()
|
|
229
229
|
{
|
|
230
|
-
await this.$_getSlotInfo();
|
|
231
|
-
await this.newGetProduct(Number(this.prod_per_page));
|
|
230
|
+
// await this.$_getSlotInfo();
|
|
231
|
+
// await this.newGetProduct(Number(this.prod_per_page));
|
|
232
232
|
}
|
|
233
233
|
},
|
|
234
234
|
methods:{
|