...
|
...
|
@@ -246,11 +246,13 @@ export default { |
|
|
delete searchParams[key];
|
|
|
}
|
|
|
}
|
|
|
try{
|
|
|
let result = await this.fetchProductList({
|
|
|
...searchParams,
|
|
|
page,
|
|
|
pageSize
|
|
|
});
|
|
|
|
|
|
let {data} = result;
|
|
|
|
|
|
if (result.code === 200) {
|
...
|
...
|
@@ -269,6 +271,10 @@ export default { |
|
|
}
|
|
|
this.productList = list;
|
|
|
}
|
|
|
}catch(e) {
|
|
|
console.log(e);
|
|
|
this.productList.list = [];
|
|
|
}
|
|
|
},
|
|
|
|
|
|
goSearch() {
|
...
|
...
|
|