新增用户默认初始化密码

This commit is contained in:
RuoYi
2025-05-22 22:41:17 +08:00
parent 1428299f55
commit dbe3df5edd
2 changed files with 9 additions and 2 deletions

View File

@@ -533,6 +533,11 @@ function submitForm() {
})
}
getDeptTree()
getList()
onMounted(() => {
getDeptTree()
getList()
proxy.getConfigKey("sys.user.initPassword").then(response => {
initPassword.value = response.msg
})
})
</script>