From a8c44f72062a399df511c4d68582890e55a3d4d2 Mon Sep 17 00:00:00 2001 From: eson <9673575+githubcontent@user.noreply.gitee.com> Date: Tue, 29 Aug 2023 16:26:06 +0800 Subject: [PATCH] fix --- .../logic/useremailconfirmationlogic.go | 42 ++++++++++--------- 1 file changed, 23 insertions(+), 19 deletions(-) diff --git a/server/auth/internal/logic/useremailconfirmationlogic.go b/server/auth/internal/logic/useremailconfirmationlogic.go index 7ab31e47..aa97834d 100644 --- a/server/auth/internal/logic/useremailconfirmationlogic.go +++ b/server/auth/internal/logic/useremailconfirmationlogic.go @@ -143,23 +143,27 @@ func (l *UserEmailConfirmationLogic) UserEmailConfirmation(req *types.RequestEma // 处理逻辑后 w,r 如:重定向, resp 必须重新处理 func (l *UserEmailConfirmationLogic) AfterLogic(w http.ResponseWriter, r *http.Request, resp *basic.Response) { - successHtml := ` - - - 注册成功 - - -

恭喜!您的注册成功。

- -

感谢您在我们网站进行注册。您的账号已经激活。

- -

您现在可以使用您的邮箱地址和密码登录我们的网站,享受完整的服务和功能。

- -

再次感谢您的信任和支持。如果您有任何问题,请随时联系我们。

- -

祝您使用愉快!

- - ` - w.Write([]byte(successHtml)) - httpx.OkJsonCtx(r.Context(), w, nil) + if resp.Code == 200 { + successHtml := ` + + + 注册成功 + + +

恭喜!您的注册成功。

+ +

感谢您在我们网站进行注册。您的账号已经激活。

+ +

您现在可以使用您的邮箱地址和密码登录我们的网站,享受完整的服务和功能。

+ +

再次感谢您的信任和支持。如果您有任何问题,请随时联系我们。

+ +

祝您使用愉快!

+ + ` + w.Write([]byte(successHtml)) + httpx.OkJsonCtx(r.Context(), w, nil) + } else { + httpx.OkJsonCtx(r.Context(), w, resp) + } }