vue2-client 1.2.105 → 1.2.106

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/CHANGELOG.md CHANGED
@@ -1,6 +1,9 @@
1
1
  # Change Log
2
2
  > 所有关于本项目的变化都在该文档里。
3
3
 
4
+ **1.2.106 -2022-08-18 @苗艳强**
5
+ - 修复上传文件保存报错的问题
6
+
4
7
  **1.2.105 -2022-08-16 @杨亚文**
5
8
  - 设置用户登录失效时间为12小时
6
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.2.105",
3
+ "version": "1.2.106",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -76,6 +76,7 @@ export default {
76
76
  } else {
77
77
  this.uploadedFileList = list
78
78
  }
79
+ this.$emit('setFiles', this.uploadedFileList.filter(item => item.status === 'done').map(item => item.id))
79
80
  },
80
81
  methods: {
81
82
  uploadFiles (info) {