Browse Source

调整压缩包 获取路径方法
调整压缩包 获取路径方法

Signed-off-by: 高雄 <admin@cxcp.com>

高雄 1 year ago
parent
commit
e79c53156b
1 changed files with 2 additions and 4 deletions
  1. 2 4
      server/src/main/resources/web/compress.ftl

+ 2 - 4
server/src/main/resources/web/compress.ftl

@@ -49,17 +49,15 @@
             onClick: chooseNode,
         }
     };
-
     function chooseNode(event, treeId, treeNode) {
         if (!treeNode.isParent) {
-            var path = '${baseUrl}' + treeNode.id + "?kkCompressfileKey=" + '${fileTree}';
+            var path = '${baseUrl}' + treeNode.id + "?kkCompressfileKey=" + '${fileTree}'+"&kkCompressfilepath=" + treeNode.id+"&fullfilename="+treeNode.name;
             location.href = "${baseUrl}onlinePreview?url=" + encodeURIComponent(Base64.encode(path));
         }
     }
-
     $(document).ready(function () {
     var url = '${fileTree}';
-        $.ajax({
+       $.ajax({
             type: "get",
             url: "${baseUrl}directory?urls="+encodeURIComponent(Base64.encode(url)),
             success: function (res) {