|
|
|
@ -727,7 +727,7 @@ |
|
|
|
|
}, |
|
|
|
|
getTypeList() { |
|
|
|
|
GoodsApi.typeList({ |
|
|
|
|
is_in_store: this.current==0?0:1 |
|
|
|
|
is_in_store: this.current==0?'':1 |
|
|
|
|
}).then(res => { |
|
|
|
|
if (res.status == 200) { |
|
|
|
|
this.tabList = res.data.list; |
|
|
|
@ -840,9 +840,10 @@ |
|
|
|
|
page: 1, |
|
|
|
|
per_page: 100, |
|
|
|
|
categoryId: val, |
|
|
|
|
is_brand: 0, |
|
|
|
|
is_brand: '', |
|
|
|
|
is_new: 1, |
|
|
|
|
order: 1, |
|
|
|
|
is_in_store:'' |
|
|
|
|
} |
|
|
|
|
GoodsApi.brandList(param).then(res => { |
|
|
|
|
let arr = res.data.data |
|
|
|
@ -869,10 +870,10 @@ |
|
|
|
|
page: 1, |
|
|
|
|
per_page: 100, |
|
|
|
|
categoryId: val, |
|
|
|
|
is_brand: 1, |
|
|
|
|
is_new: 0, |
|
|
|
|
is_brand: this.current==0?1:'', |
|
|
|
|
is_new: '', |
|
|
|
|
order: 1, |
|
|
|
|
is_in_store: this.current==0?0:1 |
|
|
|
|
is_in_store: this.current==0?'':1 |
|
|
|
|
} |
|
|
|
|
GoodsApi.brandList(param).then(res => { |
|
|
|
|
let arr = res.data.data; |
|
|
|
|