n20-common-lib 2.7.13 → 2.7.14

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": "n20-common-lib",
3
- "version": "2.7.13",
3
+ "version": "2.7.14",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -54,6 +54,7 @@
54
54
  :disabled="row._typeDisabled"
55
55
  :placeholder="'请选择' | $lc"
56
56
  style="width: 100%"
57
+ @change="$emit('typeChange', row[keys.type])"
57
58
  >
58
59
  <el-option
59
60
  v-for="item in typeOptions"
@@ -434,9 +435,13 @@ export default {
434
435
  showClose: true
435
436
  })
436
437
  }
437
- const { code, data } = await this.$axios.post(`/api/neams/eamsbaserecord/mergeDownladPdf`,this.selectionList.map(res =>res.beid) || [],{
438
- responseType: 'blob'
439
- })
438
+ const { code, data } = await this.$axios.post(
439
+ `/api/neams/eamsbaserecord/mergeDownladPdf`,
440
+ this.selectionList.map((res) => res.beid) || [],
441
+ {
442
+ responseType: 'blob'
443
+ }
444
+ )
440
445
  if (code === 200) {
441
446
  let aDom = document.createElement('a')
442
447
  aDom.href = data
@@ -448,7 +453,6 @@ export default {
448
453
  data && URL.revokeObjectURL(data)
449
454
  })
450
455
  }
451
-
452
456
  },
453
457
  batchBeforeUploadFn(file) {
454
458
  let bu = this.$listeners['before-upload'] || this.$listeners['beforeUpload']