Repair Menu

This commit is contained in:
2021-12-23 19:18:27 +07:00
parent 71e6f00fcd
commit 5229359425
2 changed files with 26 additions and 3 deletions

View File

@@ -36,7 +36,7 @@ export class Product {
async getData() {
try {
const response = await http.get(`/product/all?supplier=${this.filterSupplier}&sub-category=${this.filterSubCategory}&page=${this.page}&pageSize=${this.pageSize}`);
console.log(response)
//console.log(response)
this.data = response.body.data.map((item, idx) => {
item.key = idx;
return item