登录即同意
《用户协议》
@@ -60,7 +90,7 @@
+@import './auth.scss';
+
+.login-type-container {
+ margin: 10px 20px;
+}
+
+:deep(.el-button--primary) {
+ background-color: #5778ff;
+ border-color: #5778ff;
+
+ &:hover,
+ &:focus {
+ background-color: #4a6ae8;
+ border-color: #4a6ae8;
+ }
+
+ &:active {
+ background-color: #3d5cd6;
+ border-color: #3d5cd6;
+ }
+}
+
diff --git a/main/manager-web/src/views/register.vue b/main/manager-web/src/views/register.vue
index 0806197f..744da3e4 100644
--- a/main/manager-web/src/views/register.vue
+++ b/main/manager-web/src/views/register.vue
@@ -23,38 +23,78 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
![验证码]()
+
+
+
+
+
+
+
+
+ {{ countdown > 0 ? `${countdown}秒后重试` : '发送验证码' }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
![验证码]()
+
+
+
+
+
@@ -81,7 +121,7 @@
+@import './auth.scss';
+
+.send-captcha-btn {
+ margin-right: -5px;
+ min-width: 100px;
+ height: 40px;
+ line-height: 40px;
+ border-radius: 4px;
+ font-size: 14px;
+ background: rgb(87, 120, 255);
+ border: none;
+ padding: 0px;
+
+ &:disabled {
+ background: #c0c4cc;
+ cursor: not-allowed;
+ }
+}
+
From d24419cfb7b10d0b5353897d73f9c35c9b480930 Mon Sep 17 00:00:00 2001
From: hrz <1710360675@qq.com>
Date: Sun, 18 May 2025 17:39:12 +0800
Subject: [PATCH 11/11] =?UTF-8?q?update:=E5=8F=91=E9=80=81=E6=89=8B?=
=?UTF-8?q?=E6=9C=BA=E9=AA=8C=E8=AF=81=E7=A0=81?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../modules/security/service/impl/CaptchaServiceImpl.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/main/manager-api/src/main/java/xiaozhi/modules/security/service/impl/CaptchaServiceImpl.java b/main/manager-api/src/main/java/xiaozhi/modules/security/service/impl/CaptchaServiceImpl.java
index a324c27f..09c8a185 100644
--- a/main/manager-api/src/main/java/xiaozhi/modules/security/service/impl/CaptchaServiceImpl.java
+++ b/main/manager-api/src/main/java/xiaozhi/modules/security/service/impl/CaptchaServiceImpl.java
@@ -126,7 +126,7 @@ public class CaptchaServiceImpl implements CaptchaService {
}
// 发送验证码短信
- // smsService.sendVerificationCodeSms(phone, validateCodes);
+ smsService.sendVerificationCodeSms(phone, validateCodes);
}
@Override