소스 검색

[VersionBeta] V.1.0.0.0

[Adds]
1.去掉loading
2.复制文件客户端方法参数修改
new-cli
xzx 4 년 전
부모
커밋
ff5e780203
1개의 변경된 파일3개의 추가작업 그리고 8개의 파일을 삭제
  1. +3
    -8
      src/views/main_web/workspace.vue

+ 3
- 8
src/views/main_web/workspace.vue 파일 보기

@@ -3177,13 +3177,11 @@ export default {
*/
openMilstoneFile(file) {
if (this.isClient) {
this.loading = true;
var archid = file.archID;
var filename = file.archName + "." + file.extension;
var folderID = file.folderID;
var type = "open";
back.openFile(archid, filename, folderID, type);
this.loading = false;
} else {
this.openOffice(file);
}
@@ -3213,7 +3211,6 @@ export default {
this.gisShowUrl = file.alias;
this.appInstanceTitle = "应用查看-" + file.archName;
} else {
this.loading = true;
var archid = file.archID;
var filename = file.archName + "." + file.extension;
if (file.version > 1) {
@@ -3354,7 +3351,6 @@ export default {
this.gisShowUrl = file.alias;
this.appInstanceTitle = "应用查看-" + file.archName;
} else {
this.loading = true;
var archid = file.archID;
var filename = file.archName + "." + file.extension;
if (file.version > 1) {
@@ -3566,7 +3562,6 @@ export default {
this.showImage = true;
this.imageUrl = this.imgSrc + file.alias;
} else {
this.loading = true;
// 客户端打开文件
var archid = file.archID;
var filename = file.archName + "." + file.extension;
@@ -3583,7 +3578,6 @@ export default {
sessionStorage.projName,
folderName
);
this.loading = false;
}
}
}
@@ -4560,10 +4554,11 @@ export default {
// 客户复制文件
// 1.strFileId:文件ID;2.strNewFileName:新文件名;3.strUserId:用户ID;4.strFolderId:目的文件夹ID
back.copyFile(
nowFile.archID,
file.archID,
newFileName,
sessionStorage.userId,
nowFile.folderID
nowFile.folderID,
nowFile.archID
);
}
} else {


불러오는 중...
취소
저장