|
@@ -234,6 +234,11 @@ public class InnerApiServiceImpl implements IInnerApiService {
|
|
|
if(StrUtil.isEmpty(jsonStr)){
|
|
|
throw new BusinessException(-1, "数据已过期,请前往个人中心查看");
|
|
|
}
|
|
|
+ JSONObject jsonObject = JSON.parseObject(jsonStr);
|
|
|
+ if(jsonObject.getInteger("status").equals(SceneStatus.NO_DISPLAY.code())){
|
|
|
+ ScenePro scenePro = sceneProService.findBySceneNum(num);
|
|
|
+ return ResultData.ok(scenePro);
|
|
|
+ }
|
|
|
return ResultData.ok(JSON.parseObject(jsonStr));
|
|
|
}
|
|
|
|