|
|
@@ -2925,7 +2925,7 @@ export default { |
|
|
|
} |
|
|
|
thisApp.nowFolder = thisApp.listUserFolders[thisApp.nowFolderIndex]; |
|
|
|
thisApp.listFiles(); |
|
|
|
setInterval(()=>{thisApp.listFiles()}, 60*1000); |
|
|
|
setInterval(()=>{thisApp.listFiles()}, 6 * 1000); |
|
|
|
// thisApp.loadMyAppInstanceList(); |
|
|
|
} |
|
|
|
}) |
|
|
@@ -2976,6 +2976,7 @@ export default { |
|
|
|
* 获取当前工作下文件 |
|
|
|
*/ |
|
|
|
listFiles: function() { |
|
|
|
console.log("加载数据中1111....") |
|
|
|
var thisApp = this; |
|
|
|
thisApp.isCommonPage = false; |
|
|
|
thisApp.myFilesList = []; |
|
|
@@ -3052,7 +3053,7 @@ export default { |
|
|
|
} |
|
|
|
thisApp.listCollaborationFiles(); |
|
|
|
//thisApp.listCollaborationApps(); |
|
|
|
setInterval(()=>{thisApp.listCollaborationFiles}, 6 * 1000); |
|
|
|
// setInterval(()=>{thisApp.listCollaborationFiles}, 6 * 1000); |
|
|
|
}) |
|
|
|
.catch(error => { |
|
|
|
console.log(error); |
|
|
@@ -3063,6 +3064,7 @@ export default { |
|
|
|
* 获取协作文件 |
|
|
|
*/ |
|
|
|
listCollaborationFiles: function() { |
|
|
|
console.log("获取协作文件......") |
|
|
|
var thisApp = this; |
|
|
|
thisApp.nowFolderId = |
|
|
|
thisApp.listUserFolders[thisApp.nowFolderIndex].folderID; // 设置当前打开工作文件夹ID |
|
|
|