diff --git a/pages/cloud_warehouse/home/home.vue b/pages/cloud_warehouse/home/home.vue index 133ff0a..c182921 100644 --- a/pages/cloud_warehouse/home/home.vue +++ b/pages/cloud_warehouse/home/home.vue @@ -306,7 +306,7 @@ page: 1, limit: 20, mer_type: 1, //1-里海云仓, 2-云市场, 3-名优特产 - mer_cate_id: '', + mer_cate_pid: '', keyword: '', deduction_rate: '', //抵扣比例 rand: 1 @@ -355,13 +355,13 @@ store_category_id: '' }) this.cate_change_children = 0; - this.where.mer_cate_id = this.store_category[e].store_category_id; + this.where.mer_cate_pid = this.store_category[e].store_category_id; this.getProductslist(true); }, changeChildrenCate(e) { this.cate_change_children = e; - this.where.mer_cate_id = this.store_category_children[e].store_category_id; - if (e == 0) this.where.mer_cate_id = this.store_category[this.cate_change] + this.where.mer_cate_pid = this.store_category_children[e].store_category_id; + if (e == 0) this.where.mer_cate_pid = this.store_category[this.cate_change] .store_category_id; // 如若选中全部, 则取父级id this.getProductslist(true); },