From a0ca7c19e834e28278eaab67b8aaad916f20930c Mon Sep 17 00:00:00 2001 From: huangjiajun <582604932@qq.com> Date: Wed, 25 Sep 2024 18:21:18 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/hdl/hdl_login.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/hdl/hdl_login.go b/app/hdl/hdl_login.go index b80dc5f..be1591a 100644 --- a/app/hdl/hdl_login.go +++ b/app/hdl/hdl_login.go @@ -20,8 +20,12 @@ import ( func LoginBase(c *gin.Context) { NewSysCfgDb := implement3.NewSysCfgDb(svc.MasterDb(c), c.GetString("mid")) logo := NewSysCfgDb.SysCfgGetWithDb("agent_logo") + re := NewSysCfgDb.SysCfgFindWithDb("seo_platform_logo", "seo_platform_title") + res := map[string]string{ - "logo": logo, + "logo": logo, + "seo_logo": re["seo_platform_logo"], + "seo_title": re["seo_platform_title"], } e.OutSuc(c, res, nil) return