| | |
| | | AppHomeFloatImg appHomeFloatImg = configService.getAppHomeFloatImg();
|
| | | if ("ios".equalsIgnoreCase(acceptData.getPlatform()) && !Constant.IS_TEST)
|
| | | appHomeFloatImg = null;
|
| | | JSONObject data = new JSONObject();
|
| | | JSONObject data =new JSONObject();
|
| | | if (appHomeFloatImg != null)
|
| | | data.put("floatImg", appHomeFloatImg);
|
| | | String notifyImg = configService.getAppHomeFloatNotifyImg();
|
| | | if (!StringUtil.isNullOrEmpty(notifyImg)) {
|
| | | data.put("floatNotifyImg", notifyImg);
|
| | | }
|
| | | //
|
| | | String config = configService.get("home_float_img_new");
|
| | | if (!StringUtil.isNullOrEmpty(config)) {
|
| | | data.put("floatImgDetail", config);
|
| | | }
|
| | | out.print(JsonUtil.loadTrueResult(data));
|
| | | }
|
| | |
|