|
@@ -63,11 +63,7 @@ public class LaserService {
|
|
|
long total =jsonObject.getLong("total");
|
|
|
|
|
|
List<SceneVo> sceneVoList = new ArrayList<>();
|
|
|
- String newBasePath = basePath;
|
|
|
//String newBasePath = basePath.contains("uat")? basePath += "/uat" : basePath;
|
|
|
- newBasePath = newBasePath.contains("dev")? newBasePath + "/dev" : newBasePath;
|
|
|
- newBasePath = newBasePath.contains("uat")? newBasePath + "/uat" : newBasePath;
|
|
|
- newBasePath = newBasePath.replace("/backend","");
|
|
|
for (Object o : list) {
|
|
|
String res = JSONObject.toJSONString(o);
|
|
|
SceneVo vo = JSONObject.parseObject(res,SceneVo.class);
|
|
@@ -82,7 +78,6 @@ public class LaserService {
|
|
|
}
|
|
|
vo.setSceneName(obj.getString("title"));
|
|
|
vo.setUserName(obj.getString("phone"));
|
|
|
- vo.setThumb(newBasePath +"/index.html?m="+vo.getNum() );
|
|
|
vo.setPayStatus(1);
|
|
|
sceneVoList.add(vo);
|
|
|
}
|