From f26ca2d40dfe2a2637c699b2030dbfcc49401582 Mon Sep 17 00:00:00 2001 From: wwz <1144797966@qq.com> Date: Mon, 6 Jan 2025 19:18:04 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=A3=E7=90=86=E8=AF=A6=E6=83=85=E4=B8=8A?= =?UTF-8?q?=3D>=E9=92=B1=E5=8C=85=E6=98=8E=E7=BB=86=E5=92=8C=E9=92=B1?= =?UTF-8?q?=E5=8C=85=E4=BD=99=E9=A2=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/finance/storeincome.vue | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/views/finance/storeincome.vue b/src/views/finance/storeincome.vue index de9b8e4..9cb5e66 100644 --- a/src/views/finance/storeincome.vue +++ b/src/views/finance/storeincome.vue @@ -219,7 +219,9 @@ size="medium" @click="sendMsg()" > - {{ msgTime >= 60 ? "发送验证码" : (msgTime+'秒后重新获取') }}= 60 ? "发送验证码" : msgTime + "秒后重新获取" + }} @@ -370,7 +372,7 @@ :page-size="size" :current-page="page" layout="total,sizes, prev, pager, next" - :total="tableDataYe.total" + :total="tableDataYe.totalCount" > @@ -1658,13 +1660,12 @@ export default { method: "get", params: this.$http.adornParams({ page: this.page, - limit: this.size, + limit: this.limit, sysUserId: sysUserId, }), }).then(({ data }) => { this.tableDataLoading = false; - let returnData = data.data; - this.tableDataYe = returnData; + this.tableDataYe = data.data; }); }, // 修改二维码 @@ -2084,7 +2085,7 @@ export default { let returnData = data.data; console.log("res.data"); console.log(data.data); - this.usermMoneys = data.data.amount; + this.usermMoneys = data.data.money; console.log(this.usermMoneys); }); },