From dbcfcd751e5a17dc89a4c7a01f8f278857a84af3 Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Fri, 1 Mar 2024 15:31:32 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E7=A7=BB=E5=8A=A8=E7=AB=AF):=20=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E5=AF=86=E7=A0=81=E8=BE=93=E5=85=A5=E6=A1=86=E5=9B=BE?= =?UTF-8?q?=E6=A0=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/mobile/login/index.vue | 25 +++++++++++++++++-- .../views/visualized/data/dataset/index.vue | 10 +++++++- .../visualized/data/datasource/index.vue | 11 +++++++- 3 files changed, 42 insertions(+), 4 deletions(-) diff --git a/core/core-frontend/src/views/mobile/login/index.vue b/core/core-frontend/src/views/mobile/login/index.vue index 08d9eb9ffa..b9f60dfcbd 100644 --- a/core/core-frontend/src/views/mobile/login/index.vue +++ b/core/core-frontend/src/views/mobile/login/index.vue @@ -46,6 +46,10 @@ const validatePwd = value => { return regep.test(value) } +const visible = ref(true) +const clickRightIcon = () => { + visible.value = !visible.value +} const onSubmit = async () => { if (!checkUsername(username.value) || !validatePwd(password.value)) { showToast({ @@ -106,13 +110,21 @@ const usernameEndValidate = ({ status, message }) => { + > + +
{{ passwordError }}
@@ -159,6 +171,15 @@ const usernameEndValidate = ({ status, message }) => { color: #f54a45; } + .van-field__right-icon { + padding: 0; + display: flex; + align-items: center; + justify-content: center; + margin-right: -2px; + font-size: 20px; + } + .van-field { border: 1px solid #bbbfc4; border-radius: 4px; diff --git a/core/core-frontend/src/views/visualized/data/dataset/index.vue b/core/core-frontend/src/views/visualized/data/dataset/index.vue index 1cc623bf9a..70cd915c61 100644 --- a/core/core-frontend/src/views/visualized/data/dataset/index.vue +++ b/core/core-frontend/src/views/visualized/data/dataset/index.vue @@ -599,7 +599,12 @@ const getMenuList = (val: boolean) => { -
+