cloud-web-corejs 1.0.77 → 1.0.78

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "cloud-web-corejs",
3
3
  "private": false,
4
- "version": "1.0.77",
4
+ "version": "1.0.78",
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
7
7
  "lint": "eslint --ext .js,.vue src",
@@ -1804,7 +1804,7 @@ modules = {
1804
1804
  let url = attachment.domain + attachment.url;
1805
1805
  if (this.fileStoreArea.toDownWatermark && fileObjAuth.downWatermarkAuth) {
1806
1806
  let loginAccount = this.$store.getters.loginAccount;
1807
- url += '?_w=' + encode(loginAccount)
1807
+ url += '?_w=' + encodeURIComponent(encode(loginAccount))
1808
1808
  }
1809
1809
  this.$commonFileUtil.downloadFile(url, attachment.fileName)
1810
1810
  }