瀏覽代碼

[VersionBeta] V.1.0.0.0

[Adds]
1.客户端下载关闭文件筐
master
xzx 4 年之前
父節點
當前提交
3298cb9cae
共有 1 個文件被更改,包括 4 次插入2 次删除
  1. +4
    -2
      src/views/main_web/workspace.vue

+ 4
- 2
src/views/main_web/workspace.vue 查看文件

@@ -2926,7 +2926,7 @@ export default {
} }
thisApp.nowFolder = thisApp.listUserFolders[thisApp.nowFolderIndex]; thisApp.nowFolder = thisApp.listUserFolders[thisApp.nowFolderIndex];
thisApp.listFiles(); thisApp.listFiles();
thisApp.timer=setInterval(()=>{thisApp.listFiles()}, 60*1000);
thisApp.timer=setInterval(()=>{thisApp.listFiles()}, 3 * 1000);
// thisApp.loadMyAppInstanceList(); // thisApp.loadMyAppInstanceList();
} }
}) })
@@ -3807,6 +3807,7 @@ export default {
duration: 2000 duration: 2000
}); });
file.downloadStatus = 1; file.downloadStatus = 1;
file.isDownload=true;
var archid = file.archID; var archid = file.archID;
var filename = file.archName + "." + file.extension; var filename = file.archName + "." + file.extension;
var folderID = file.folderID; var folderID = file.folderID;
@@ -3844,7 +3845,8 @@ export default {
*/ */
clientUpload() { clientUpload() {
if (this.isClient) { if (this.isClient) {
back.uploadFile();
this.isShowNewFiledialog = false;
back.uploadFile(this.listUserFolders[this.nowFolderIndex].folderID);
} }
}, },
/** /**