From 329299a3b59be7744dd8babe374e9f9f9b5a8bdc Mon Sep 17 00:00:00 2001 From: gyq <875626088@qq.com> Date: Mon, 28 Jul 2025 10:02:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E5=85=91=E6=8D=A2=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E4=B8=8D=E7=BB=9F=E4=B8=80=E9=97=AE=E9=A2=98=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/renwu/components/record.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/views/renwu/components/record.vue b/src/views/renwu/components/record.vue index ba89221..40ed194 100644 --- a/src/views/renwu/components/record.vue +++ b/src/views/renwu/components/record.vue @@ -208,9 +208,12 @@ export default { page: this.tableData.page, limit: this.tableData.limit }); + + console.log("获取抽奖记录列表", data); + this.tableData.loading = false; - this.tableData.list = data.page.list; - this.tableData.total = data.page.totalCount; + this.tableData.list = data.data.list; + this.tableData.total = data.data.totalCount; } catch (error) { this.tableData.loading = false; console.log(error);