Skip to content

Commit

Permalink
系统设置->产品标题栏缩略小图配置完后,用户侧标题栏显示新配置的图标
Browse files Browse the repository at this point in the history
  • Loading branch information
duke committed May 7, 2022
1 parent ffb0c0d commit 95af3a4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -637,6 +637,7 @@ public ModelAndView index(
}

ModelAndView view = request(super.createView("/apps/im/index"));
view.addObject("systemConfig", MainUtils.getSystemConfig());
Optional<BlackEntity> blackOpt = cache.findOneBlackEntityByUserIdAndOrgi(userid, Constants.SYSTEM_ORGI);
CousultInvite invite = OnlineUserProxy.consult(appid, orgi);
if (StringUtils.isNotBlank(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,13 @@ html
meta(name='viewport', content='width=device-width,maximum-scale=1,initial-scale=1,initial-scale=1,user-scalable=no')
meta(name='apple-mobile-web-app-capable', content='yes')
title 在线咨询
link(rel='shortcut icon', type='image/x-icon', href='/images/favicon.ico?t=1489039620156')
if systemConfig != null && systemConfig.favlogo != null
link(rel='shortcut icon', type='image/x-icon', href='/res/image.html?id=' + systemConfig.favlogo)
else
link(rel='shortcut icon', type='image/x-icon', href='/images/favicon.ico?t=1489039620156')
link(rel='stylesheet', type='text/css', href='/im/css/ukefu.css')
link#skin(rel='stylesheet', type='text/css', href='/im/css/default/ukefu.css')
// kindeditor
// kindeditor
link(rel='stylesheet', type='text/css', href='/im/js/kindeditor/themes/default/default.css')
script(src='/js/jquery-1.10.2.min.js')
script(type='text/javascript', src='/im/js/kindeditor/kindeditor.js')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ html
meta(name='viewport', content='width=device-width,maximum-scale=1,initial-scale=1,initial-scale=1,user-scalable=no')
meta(name='apple-mobile-web-app-capable', content='yes')
title 智能客服
link(rel='shortcut icon', type='image/x-icon', href='/images/favicon.ico?t=1489039620156')
if systemConfig != null && systemConfig.favlogo != null
link(rel='shortcut icon', type='image/x-icon', href='/res/image.html?id=' + systemConfig.favlogo)
else
link(rel='shortcut icon', type='image/x-icon', href='/images/favicon.ico?t=1489039620156')
link(rel='stylesheet', type='text/css', href='/im/css/ukefu.css')
link#skin(rel='stylesheet', type='text/css', href='/im/css/default/ukefu.css')
// kindeditor
Expand Down

0 comments on commit 95af3a4

Please sign in to comment.