vue2-client 1.12.42 → 1.12.43

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,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.12.42",
3
+ "version": "1.12.43",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
@@ -203,7 +203,7 @@ export default {
203
203
  // formData.append('stockAlias', this.model.stockAlias)
204
204
  formData.append('formType', this.model.type)
205
205
  formData.append('useType', this.model.useType ?? 'Default')
206
- formData.append('resUploadStock', this.model.resUploadStock)
206
+ formData.append('resUploadStock', this.model.resUploadStock ?? 1)
207
207
  formData.append('filename', info.file.name)
208
208
  formData.append('filesize', (info.file.size / 1024 / 1024).toFixed(4))
209
209
  formData.append('f_operator', this.currUser ? this.currUser.username : '')