diff --git a/buyer/src/pages/GoodsList.vue b/buyer/src/pages/GoodsList.vue index 15e1cc15..68a5cc1b 100644 --- a/buyer/src/pages/GoodsList.vue +++ b/buyer/src/pages/GoodsList.vue @@ -229,7 +229,7 @@ export default { .then((res) => { this.loading = false; if (res.success) { - this.goodsList = res.result; + this.goodsList = res.result.records; this.total = res.result.total; } })