cloud-web-corejs 1.0.54-dev.68 → 1.0.54-dev.69

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.54-dev.68",
4
+ "version": "1.0.54-dev.69",
5
5
  "scripts": {
6
6
  "dev": "vue-cli-service serve",
7
7
  "lint": "eslint --ext .js,.vue src",
@@ -146,12 +146,12 @@ export default {
146
146
  }
147
147
  },
148
148
  submitFile(rows, fileInfos) {
149
- this.handlLineCode(fileInfos);
149
+ // this.handlLineCode(fileInfos);
150
150
  let eventParamNames = ['attachments', 'fileInfos'];
151
151
  let eventParamValues = [rows, fileInfos];
152
152
  this.handleCustomEvent(this.field.options.onAfterConfirmFile, eventParamNames, eventParamValues)
153
153
  },
154
- handlLineCode(fileInfos) {
154
+ /*handlLineCode(fileInfos) {
155
155
  let allPromise = [];
156
156
  fileInfos.forEach(async fileInfo => {
157
157
  await this.processFile(fileInfo.file, (lineCode) => {
@@ -222,7 +222,7 @@ export default {
222
222
  handleError(errorMessage) {
223
223
  this.error = errorMessage;
224
224
  this.loading = false;
225
- },
225
+ },*/
226
226
  }
227
227
  }
228
228
  </script>