swordpass-ui 1.1.5 → 1.1.6

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": "swordpass-ui",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "author": "sword",
5
5
  "private": false,
6
6
  "scripts": {
@@ -455,6 +455,7 @@ export default {
455
455
  // 同步附件数据到上传组件
456
456
  refreshFileUpload() {
457
457
  this.$nextTick(() => {
458
+ console.log(this.$refs.fileUpload)
458
459
  if (this.$refs.fileUpload) {
459
460
  this.$refs.fileUpload.reload(this.inputVal)
460
461
  }
@@ -477,6 +478,7 @@ export default {
477
478
  this.valueOpration(item, 'move', direct)
478
479
  },
479
480
  uploadSuccess(response, file, fileList) {
481
+ console.log('uploadSuccess', response, file, fileList)
480
482
  this.valueOpration(this.convertFile2Item(file))
481
483
  this.$emit('onSuccess', response, file, fileList)
482
484
  },