增加找回密码的功能

This commit is contained in:
Sakura-RanChen
2025-05-19 14:15:28 +08:00
parent 737c4a6b5d
commit f242d43f73
4 changed files with 309 additions and 0 deletions
+4
View File
@@ -56,6 +56,7 @@
<div
style="font-weight: 400;font-size: 14px;text-align: left;color: #5778ff;display: flex;justify-content: space-between;margin-top: 20px;">
<div v-if="allowUserRegister" style="cursor: pointer;" @click="goToRegister">新用户注册</div>
<div style="cursor: pointer;" @click="goToForgetPassword">忘记密码?</div>
</div>
</div>
<div class="login-btn" @click="login">登录</div>
@@ -214,6 +215,9 @@ export default {
goToRegister() {
goToPage('/register')
},
goToForgetPassword() {
goToPage('/retrieve-password')
},
}
}
</script>