fix: ui.theme 为空的时候设置默认值
This commit is contained in:
parent
adb843fa49
commit
21709ff323
|
@ -209,7 +209,7 @@ public class SystemParameterService {
|
||||||
public String getValue(String key) {
|
public String getValue(String key) {
|
||||||
SystemParameter param = systemParameterMapper.selectByPrimaryKey(key);
|
SystemParameter param = systemParameterMapper.selectByPrimaryKey(key);
|
||||||
if (param == null || StringUtils.isBlank(param.getParamValue())) {
|
if (param == null || StringUtils.isBlank(param.getParamValue())) {
|
||||||
return "#783887";
|
return "";
|
||||||
}
|
}
|
||||||
return param.getParamValue();
|
return param.getParamValue();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue