Bläddra i källkod

[VersionBeta] V.1.0.0.0

[Adds]
1.客户端新建文件添加userid参数
new-cli
xzx 4 år sedan
förälder
incheckning
904cae4855
1 ändrade filer med 3 tillägg och 3 borttagningar
  1. +3
    -3
      src/views/main_web/workspace.vue

+ 3
- 3
src/views/main_web/workspace.vue Visa fil

@@ -2059,7 +2059,7 @@ export default {
dialogNewSuperMapVisible: false,
newSuperMap: { showName: "", description: "" },
mapAddress: "北京天安门",
isClient: true, // 是否是客户端
isClient: false, // 是否是客户端

/**新建文件分组 start*/
dialogNewFolderGroup: false, //新建文件分组组弹窗
@@ -3685,7 +3685,7 @@ export default {
clientUpload() {
if (this.isClient) {
this.isShowNewFiledialog = false;
back.uploadFile(this.listUserFolders[this.nowFolderIndex].folderID);
back.uploadFile(this.listUserFolders[this.nowFolderIndex].folderID,sessionStorage.userId);
}
},
/**
@@ -5216,7 +5216,7 @@ export default {
var file=response.data.data;
if(this.isClient)
{
thisApp.clientDownLoad(file,1);
this.clientDownLoad(file,1);
}
} else {
this.$notify({


Laddar…
Avbryt
Spara