From b4a755291704fc535f8ec0423324e0220664669a Mon Sep 17 00:00:00 2001 From: liushilong <2224574157@qq.com> Date: Mon, 25 Mar 2024 16:12:19 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=AE=B0=E4=BD=8F=E8=B4=A6=E5=8F=B7?= =?UTF-8?q?=E5=8A=9F=E8=83=BD=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 3 +++ src/views/login/components/Login.vue | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index c6948a7..0a0737b 100644 --- a/src/App.vue +++ b/src/App.vue @@ -73,4 +73,7 @@ const getThemeOverrides = computed(() => { color: #666666 !important; font-size: 14px !important; } +::v-deep(.n-base-clear > .n-base-clear__clear){ + color: #c9c9c9 !important; +} diff --git a/src/views/login/components/Login.vue b/src/views/login/components/Login.vue index a8d23f3..c6c2b94 100644 --- a/src/views/login/components/Login.vue +++ b/src/views/login/components/Login.vue @@ -175,7 +175,8 @@ onMounted(() => { if (data) { data = JSON.parse(data) as any; formInline.username = data.username; - formInline.password = data.password; + formInline.password = ''; + // formInline.password = data.password; formInline.enterprisecode = data.enterprisecode; autoLogin.value = true; }