Fixing Menu

This commit is contained in:
2021-12-24 14:50:46 +07:00
parent 65c9c0b39d
commit 69fc55338d
2 changed files with 6 additions and 4 deletions

View File

@@ -29,6 +29,7 @@ export class Supplier {
async getData() {
try {
const response = await http.get(`/users/supplier?page=${this.page}&pageSize=${this.pageSize}`);
//console.log(response)
this.data = response.body.data ?? []
this.total_data = response.body.count ?? 0
} catch (e) {