From 1abc7a5a5245b2fffdd37422a719d2520849a8f0 Mon Sep 17 00:00:00 2001 From: misworga831 Date: Tue, 4 Apr 2023 15:14:41 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=80=82=E9=85=8D=E6=96=B0=E8=8E=B7?= =?UTF-8?q?=E5=8F=96=E5=95=86=E5=93=81=E8=BF=94=E5=9B=9E=E7=BB=93=E6=9E=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- buyer/src/pages/GoodsList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } })