瀏覽代碼

修复以中文命名项目名导出备份时报错的BUG

jacky6024 8 年之前
父節點
當前提交
a4b867e70e
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      urule-console-js/src/frame/action.js

+ 1 - 1
urule-console-js/src/frame/action.js

@@ -355,7 +355,7 @@ function buildData(data,level) {
                             if(!result){
                                 return;
                             }
-                            const url=window._server+'/frame/exportProjectBackupFile?path='+encodeURI(data.fullPath);
+                            const url=window._server+'/frame/exportProjectBackupFile?path='+encodeURI(encodeURI(data.fullPath));
                             window.open(url,'_blank');
                         });
                     }