#
Junjie
4 天以前 307db0f5c15fb97abd785ef4aaf1220048da86ce
src/main/java/com/zy/common/utils/NavigateMapData.java
@@ -223,8 +223,8 @@
                }
                List<MapNode> list = lists.get(row);
                MapNode mapNode = list.get(bay);
                List<MapNode> list = lists.get(row - 1);
                MapNode mapNode = list.get(bay - 1);
                if (mapType == NavigationMapType.NONE.id) {
                    //不过滤任何数据
@@ -250,8 +250,8 @@
                mapNode.setLocNo(locMast.getLocNo());
                //更新list
                list.set(bay, mapNode);
                lists.set(row, list);
                list.set(bay - 1, mapNode);
                lists.set(row - 1, list);
            }
        }catch (Exception e) {
            e.printStackTrace();