This commit is contained in:
xiaojunnuo
2025-07-01 23:24:39 +08:00
parent ddda691552
commit 5c251ee774
32 changed files with 193 additions and 47 deletions
@@ -21,14 +21,14 @@ const changePasswordButtonRef = ref();
onMounted(() => {
if (userStore.getUserInfo.isWeak === true) {
Modal.info({
title: t("passwordForm.title"),
content: t("passwordForm.weakPasswordWarning"),
title: t("authentication.title"),
content: t("authentication.weakPasswordWarning"),
onOk: () => {
changePasswordButtonRef.value.open({
password: "123456",
});
},
okText: t("passwordForm.changeNow"),
okText: t("authentication.changeNow"),
});
}
});