From cff78f1eed7788e04363efba73e6693233016668 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?old=E6=98=93?= <156663459@qq.com> Date: Mon, 14 Oct 2024 17:55:42 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/MinProLogin.vue | 41 +++++++++++++++++++++++++++++++--- 1 file changed, 38 insertions(+), 3 deletions(-) diff --git a/src/components/MinProLogin.vue b/src/components/MinProLogin.vue index 376ba43..c6a0357 100644 --- a/src/components/MinProLogin.vue +++ b/src/components/MinProLogin.vue @@ -39,8 +39,13 @@
+ +
+ {{scanError}} +
+
-
{{ scanError }}
+
@@ -70,7 +75,8 @@ export default { captchaImage: '', codeId: "", loginimg: "", - usercode: "" + usercode: "", + scanSuccess:false }); // 切换标签页 const switchTab = (tab) => { @@ -168,7 +174,9 @@ export default { } if (message.status == 1)//开始扫码登录 { - scanError.value = '已扫码等待授权...' + scanError.value = '已扫码成功,等待授权..' + state.scanSuccess = true; + } if (message.status == 2)//授权成功 { scanError.value = '授权成功' @@ -420,6 +428,8 @@ export default {