mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-03 20:58:09 +08:00
commit
4238fa9126
@ -1,5 +1,11 @@
|
||||
## 更新日志
|
||||
|
||||
### 1.0.0-rc.7
|
||||
|
||||
*2016-XX-XX*
|
||||
|
||||
- Upload 新增 Data 属性支持额外数据的传输
|
||||
|
||||
### 1.0.0-rc.6
|
||||
|
||||
*2016-10-11*
|
||||
|
@ -31,18 +31,13 @@ export default {
|
||||
};
|
||||
}
|
||||
},
|
||||
multiple: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
data: Object,
|
||||
multiple: Boolean,
|
||||
name: {
|
||||
type: String,
|
||||
default: 'file'
|
||||
},
|
||||
withCredentials: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
},
|
||||
withCredentials: Boolean,
|
||||
thumbnailMode: Boolean,
|
||||
showUploadList: {
|
||||
type: Boolean,
|
||||
@ -179,6 +174,7 @@ export default {
|
||||
'with-credentials': this.withCredentials,
|
||||
headers: this.headers,
|
||||
name: this.name,
|
||||
data: this.data,
|
||||
accept: this.thumbnailMode ? 'image/*' : this.accept,
|
||||
'on-start': this.handleStart,
|
||||
'on-progress': this.handleProgress,
|
||||
|
@ -34,6 +34,7 @@ export default {
|
||||
type: String,
|
||||
default: 'file'
|
||||
},
|
||||
data: Object,
|
||||
headers: Object,
|
||||
withCredentials: Boolean,
|
||||
multiple: Boolean,
|
||||
@ -133,6 +134,7 @@ export default {
|
||||
headers: this.headers,
|
||||
withCredentials: this.withCredentials,
|
||||
file: file,
|
||||
data: this.data,
|
||||
filename: this.name,
|
||||
onProgress: e => {
|
||||
this.onProgress(e, file);
|
||||
|
Loading…
Reference in New Issue
Block a user