From f9c410aabfb5672f59cd6560e3b175e71f707e9a Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Fri, 7 Nov 2025 13:57:42 +0800 Subject: [PATCH] fix(login): The default password was not synchronized on the front end. --- frontend/src/views/system/user/User.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/system/user/User.vue b/frontend/src/views/system/user/User.vue index e8cd524b..6f134a2a 100644 --- a/frontend/src/views/system/user/User.vue +++ b/frontend/src/views/system/user/User.vue @@ -243,7 +243,7 @@
- {{ t('prompt.default_password', { msg: 'SQLBot@123456' }) }} + {{ t('prompt.default_password', { msg: defaultPwd }) }} {{ t('datasource.copy') }} @@ -535,7 +535,7 @@ const copyText = () => { } const copyPassword = () => { - copy('SQLBot@123456') + copy(defaultPwd.value) .then(function () { ElMessage.success(t('embedded.copy_successful')) })