From e38e31b0db9a34c2af86f44b77a4daff96bfa513 Mon Sep 17 00:00:00 2001 From: guoapeng Date: Tue, 22 Apr 2025 12:50:09 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E7=99=BB=E5=BD=95=E5=88=A4=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- src/pages/Login/index.vue | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 8bd9fe5..a66927e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "a8000-plus", "private": true, - "version": "0.0.2", + "version": "0.0.3", "type": "module", "scripts": { "dev": "vite", diff --git a/src/pages/Login/index.vue b/src/pages/Login/index.vue index 27af65f..ace2b6f 100644 --- a/src/pages/Login/index.vue +++ b/src/pages/Login/index.vue @@ -90,7 +90,10 @@ const submitPin = async () => { const showPassword = ref(false) const next = () => { - showPassword.value = true + if (activeUser.value?.id) { + showPassword.value = true + } + } const back = () => { showPassword.value = false