Browse Source

更新

master
huangjiajun 1 month ago
parent
commit
820a711f14
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      app/hdl/hdl_login.go

+ 5
- 1
app/hdl/hdl_login.go View File

@@ -18,7 +18,11 @@ func LoginBase(c *gin.Context) {
engine := db.DBs[masterId] engine := db.DBs[masterId]
sysCfgDb := implement2.NewSysCfgDb(engine, masterId) sysCfgDb := implement2.NewSysCfgDb(engine, masterId)
res := sysCfgDb.SysCfgFindWithDb("seo_platform_logo", "seo_platform_title") res := sysCfgDb.SysCfgFindWithDb("seo_platform_logo", "seo_platform_title")
e.OutSuc(c, res, nil)
re := map[string]string{
"logo": res["seo_platform_logo"],
"title": res["seo_platform_title"],
}
e.OutSuc(c, re, nil)
return return
} }




Loading…
Cancel
Save