fix(文件管理): 文件上传限制提示语修改
--bug=1047313 --user=宋昌昌 【文件管理】-文件管理中上传超出大小限制的文件,提示语没有同步改动,依然用的是50MB大小限制 https://www.tapd.cn/55049933/s/1605388
This commit is contained in:
parent
c75ee4104b
commit
6012983463
|
@ -383,10 +383,6 @@ export default {
|
||||||
if (!this.fileValidator(file)) {
|
if (!this.fileValidator(file)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (file.size / 1024 / 1024 > 50) {
|
|
||||||
this.$warning(this.$t("api_test.request.body_upload_limit_size"));
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return true;
|
return true;
|
||||||
},
|
},
|
||||||
handleUpload(uploadResources) {
|
handleUpload(uploadResources) {
|
||||||
|
|
Loading…
Reference in New Issue