|
@@ -218,7 +218,9 @@ export default {
|
|
|
// }
|
|
|
if(this.queryParams.categoryIdList){
|
|
|
for (let i = 0; i < this.queryParams.categoryIdList.length; i++) {
|
|
|
- this.queryParams.categoryIdList[i] = this.queryParams.categoryIdList[i][1]
|
|
|
+ if(this.queryParams.categoryIdList[i][1]){
|
|
|
+ this.queryParams.categoryIdList[i] = this.queryParams.categoryIdList[i][1]
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
getGoodsList('pageNum='+this.queryParams.pageNum + '&pageSize='+this.queryParams.pageSize+'&orderByColumn='+ this.queryParams.orderByColumn +'&isAsc='+ this.queryParams.isAsc +'&', {
|