From f0e037229876aaab03817413323064de13607373 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?kaizheng=28=E9=83=91=E5=87=AF=29?= Date: Thu, 27 Feb 2025 16:37:58 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=87=8D=E7=BD=AE=E5=AF=86=E7=A0=81?= =?UTF-8?q?=E6=8A=A5=E9=94=99=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/user/index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/system/user/index.vue b/src/views/system/user/index.vue index 5b1ff19..0c72323 100644 --- a/src/views/system/user/index.vue +++ b/src/views/system/user/index.vue @@ -282,7 +282,7 @@ export default { ], dialog: false, password: "", - userId: "", + loginId: "", passwordType: "password" }; }, @@ -363,7 +363,7 @@ export default { } const { code, message } = await resetPassword({ - userId: this.userId, + loginId: this.loginId, password: this.password }); if (code === 0) { @@ -393,7 +393,7 @@ export default { return arr.join("、"); }, async editPassword(item) { - this.userId = item.id; + this.loginId = item.loginId; this.dialog = true; // await this.querySafetyFn() },