diff --git a/src/modules/common/service/commont.impl.go b/src/modules/common/service/commont.impl.go index 3756a168..56a5da05 100644 --- a/src/modules/common/service/commont.impl.go +++ b/src/modules/common/service/commont.impl.go @@ -41,5 +41,11 @@ func (s *CommontImpl) SystemConfigInfo() map[string]string { // 获取登录界面背景 loginBackground := s.sysConfigService.SelectConfigValueByKey("sys.loginBackground") infoMap["loginBackground"] = loginBackground + // 系统设置-官网网址 + officialUrl := s.sysConfigService.SelectConfigValueByKey("sys.officialUrl") + infoMap["officialUrl"] = officialUrl + // 系统设置-系统使用文档 + helpDoc := s.sysConfigService.SelectConfigValueByKey("sys.helpDoc") + infoMap["helpDoc"] = helpDoc return infoMap }