‘linchangsheng’ 5 月之前
父節點
當前提交
117521ce6f

+ 1 - 2
mall-server-api/src/main/java/com/gree/mall/manager/logic/comlist/ComListAllLogic.java

@@ -369,9 +369,8 @@ public class ComListAllLogic {
             if (StringUtils.isEmpty(comDetail.getWebsitId())) {
                 continue;
             }
-            String fileUrl = ossUtil.getUrlWw(comDetail.getFileUrl());
             Map<String, Object> map = new HashMap<>();
-            map.put("fileUrl", fileUrl);
+            map.put("fileUrl", comDetail.getFileUrl());
             map.put("fileName", comDetail.getWebsitId() + "-(" + comDetail.getTitle() + ").xlsx");
             files.add(map);
         }

+ 1 - 2
mall-server-api/src/main/java/com/gree/mall/manager/logic/comlist/ComListLogic.java

@@ -221,9 +221,8 @@ public class ComListLogic {
             if (StringUtils.isEmpty(comDetail.getWebsitId())) {
                 continue;
             }
-            String fileUrl = ossUtil.getUrlWw(comDetail.getFileUrl());
             Map<String, Object> map = new HashMap<>();
-            map.put("fileUrl", fileUrl);
+            map.put("fileUrl", comDetail.getFileUrl());
             map.put("fileName", comDetail.getWebsitId() + "-(" + comDetail.getTitle() + ").xlsx");
             files.add(map);
         }