geer-builder 1.2.743 → 1.2.745

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/GMyPurchases.vue CHANGED
@@ -64,7 +64,7 @@ export default {
64
64
  components: { ToShipTab, ProcessingTab, ShippingTab, CompletedTab, ToPayTab, cancelled, ToPickedTab, CodManual },
65
65
  data: () =>
66
66
  ({
67
- tab: "approval",
67
+ tab: "to_pay",
68
68
  order_list: [],
69
69
  to_pay_count: 0,
70
70
  processing_count: 0,
package/GProductList.vue CHANGED
@@ -342,7 +342,7 @@ export default {
342
342
  await this.$bind('new_product_list', querry);
343
343
  let filt = this.new_product_list.map(prod => {
344
344
 
345
- if(prod.activated_only && !this.user_info && !this.user_info.hasOwnProperty('active_slot') )
345
+ if(prod.activated_only && !this.user_info )
346
346
  {
347
347
  remove_prod_count++;
348
348
  return false;
@@ -369,7 +369,7 @@ export default {
369
369
  let loaded_new_product_remove_count = 0;
370
370
  let filt1 = this.loaded_new_product.map(prod => {
371
371
 
372
- if(prod.activated_only && !this.user_info && this.user_info.hasOwnProperty('active_slot') )
372
+ if(prod.activated_only && !this.user_info )
373
373
  {
374
374
  loaded_new_product_remove_count++;
375
375
  return false;
@@ -386,7 +386,7 @@ export default {
386
386
  await this.$bind('loaded_new_product', querry);
387
387
  let filt = this.loaded_new_product.map(prod => {
388
388
 
389
- if(prod.activated_only && !this.user_info && !this.user_info.hasOwnProperty('active_slot') )
389
+ if(prod.activated_only && !this.user_info )
390
390
  {
391
391
  return false;
392
392
  }
@@ -406,7 +406,7 @@ export default {
406
406
  await this.$bind('new_product_list', querry);
407
407
  let filt = this.new_product_list.map(prod =>
408
408
  {
409
- if(prod.activated_only && !this.user_info && !this.user_info.hasOwnProperty('active_slot') )
409
+ if(prod.activated_only && !this.user_info )
410
410
  {
411
411
  return false;
412
412
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "geer-builder",
3
- "version": "1.2.743",
3
+ "version": "1.2.745",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {