提交 39e099a1 编写于 作者: RedPing97's avatar RedPing97

文件上传(磁盘文件)diaable参数支持、去除timeout

上级 9322f115
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
drag drag
multiple multiple
list-type="text" list-type="text"
:disabled="disabled"
:action="getAction()" :action="getAction()"
:headers="myHeaders" :headers="myHeaders"
:file-list="uploadFileList" :file-list="uploadFileList"
...@@ -28,6 +29,7 @@ ...@@ -28,6 +29,7 @@
ref="upload" ref="upload"
multiple multiple
list-type="text" list-type="text"
:disabled="disabled"
:action="getAction()" :action="getAction()"
:headers="myHeaders" :headers="myHeaders"
:file-list="uploadFileList" :file-list="uploadFileList"
...@@ -158,6 +160,14 @@ ...@@ -158,6 +160,14 @@
*/ */
@Prop({default: false}) public persistence?: boolean; @Prop({default: false}) public persistence?: boolean;
/**
* 是否启用
*
* @type {boolean}
* @memberof DiskFileUpload
*/
@Prop({default: false}) public disabled?: boolean;
/** /**
* 是否显示拖拽区域 * 是否显示拖拽区域
* *
...@@ -407,7 +417,7 @@ ...@@ -407,7 +417,7 @@
// 拼接url // 拼接url
const uploadUrl = this.getAction(); const uploadUrl = this.getAction();
// 发送post请求 // 发送post请求
Axios.post(uploadUrl, formData, {timeout: 2000}).then((response: any) => { Axios.post(uploadUrl, formData).then((response: any) => {
if (!response || response.status != 200) { if (!response || response.status != 200) {
Message.error(_this.$t('components.diskFileUpload.loadFailure') + '!'); Message.error(_this.$t('components.diskFileUpload.loadFailure') + '!');
} }
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册