From ed64c680482289844b19f07658b697b1ed889de2 Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Thu, 23 Nov 2023 21:47:13 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E7=B3=BB=E7=BB=9F=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E5=AE=98=E7=BD=91=E7=BD=91=E5=9D=80=E5=92=8C=E7=B3=BB=E7=BB=9F?= =?UTF-8?q?=E4=BD=BF=E7=94=A8=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/common/service/commont.impl.go | 6 ++++++ 1 file changed, 6 insertions(+) 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 }