Browse Source

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

jacky6024 8 years ago
parent
commit
a4b867e70e
1 changed files with 1 additions and 1 deletions
  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');
                         });
                     }