fix: ui.theme 为空的时候设置默认值

This commit is contained in:
Captain.B 2021-03-18 14:11:41 +08:00
parent adb843fa49
commit 21709ff323
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ public class SystemParameterService {
public String getValue(String key) {
SystemParameter param = systemParameterMapper.selectByPrimaryKey(key);
if (param == null || StringUtils.isBlank(param.getParamValue())) {
return "#783887";
return "";
}
return param.getParamValue();
}