Commit 174a1469 by 陶光胜

二维码

parent 64879c5b
......@@ -98,15 +98,18 @@ public class CustomGuideApiServiceImpl implements CustomGuideApiService {
log.info("该企业没有设置导航 , 企业id=" + enterpriseId);
return ServiceResponse.success();
}
// **1黑色 2红色*/
int theme = 2;
Integer theme1 = this.customThemeService.getTheme(enterpriseId, appid);
if(theme1 != null){
theme = theme1;
}
String themeStr = "normal";
Integer theme = this.customThemeService.getTheme(enterpriseId, appid);
String themeStr = "black-blue-theme";
if (theme == 1) {
themeStr = "blackTheme";
themeStr = "black-blue-theme";
} else if(theme == 2){
themeStr = "black-golden-theme";
} else if(theme == 3){
themeStr = "dark-green-theme";
} else if(theme == 4){
themeStr = "tint-green-theme";
} else {
themeStr = "red-theme";
}
// networkTimeout
Map<String, Object> networkTimeoutMap = new HashMap<String, Object>();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment