|
@@ -38,7 +38,7 @@ public class LaserService {
|
|
|
long total =jsonObject.getLong("total");
|
|
|
|
|
|
List<SceneVo> sceneVoList = new ArrayList<>();
|
|
|
- basePath = basePath.contains("uat")? basePath += "/uat" : basePath;
|
|
|
+ String newBasePath = basePath.contains("uat")? basePath += "/uat" : basePath;
|
|
|
for (Object o : list) {
|
|
|
String res = JSONObject.toJSONString(o);
|
|
|
SceneVo vo = JSONObject.parseObject(res,SceneVo.class);
|
|
@@ -47,8 +47,7 @@ public class LaserService {
|
|
|
vo.setStatusString(getLaserStatus(vo.getStatus()));
|
|
|
vo.setSceneName(obj.getString("title"));
|
|
|
vo.setUserName(obj.getString("phone"));
|
|
|
-
|
|
|
- vo.setThumb(basePath +"/index.html?m="+vo.getNum() );
|
|
|
+ vo.setThumb(newBasePath +"/index.html?m="+vo.getNum() );
|
|
|
sceneVoList.add(vo);
|
|
|
}
|
|
|
|