|
@@ -908,6 +908,12 @@ public class WorkServiceImpl extends IBaseStrServiceImpl<WorkEntity, String> imp
|
|
|
}else if (active.equalsIgnoreCase("prod")){
|
|
|
URL ="https://4dkk.4dage.com/720yun_fd_manage/"+workId+"/someData.json?_= "+System.currentTimeMillis() ;
|
|
|
}
|
|
|
+ else if (active.equalsIgnoreCase("sitaws")){
|
|
|
+ URL ="https://testeurs3.4dkankan.com/720yun_fd_manage/"+workId+"/someData.json?_= "+System.currentTimeMillis() ;
|
|
|
+ }
|
|
|
+ else if (active.equalsIgnoreCase("prodaws")){
|
|
|
+ URL ="https://eurs3.4dkankan.com/720yun_fd_manage/"+workId+"/someData.json?_= "+System.currentTimeMillis() ;
|
|
|
+ }
|
|
|
if (StrUtil.isEmpty(URL)){
|
|
|
return;
|
|
|
}
|
|
@@ -937,9 +943,13 @@ public class WorkServiceImpl extends IBaseStrServiceImpl<WorkEntity, String> imp
|
|
|
res.put("openingAnimationType",5);
|
|
|
break;
|
|
|
}
|
|
|
- res.put("isShowOpeningAnimation",1);
|
|
|
+ if (!res.containsKey("isShowOpeningAnimation")){
|
|
|
+ res.put("isShowOpeningAnimation",1);
|
|
|
+ }
|
|
|
}else {
|
|
|
- res.put("isShowOpeningAnimation",0);
|
|
|
+ if (!res.containsKey("isShowOpeningAnimation")){
|
|
|
+ res.put("isShowOpeningAnimation",0);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
}else if (!res.containsKey("openingAnimationType") &&! res.containsKey("isShowOpeningAnimation")){
|