fix(测试跟踪): 用例缺陷附件上传限制为50MB

--bug=1032752 --user=宋昌昌 【测试跟踪】github#27480,功能用例上传附件接口提示是不超过500M,实际上传200M的文件接口会报错 https://www.tapd.cn/55049933/s/1436598
This commit is contained in:
song-cc-rock 2023-11-15 10:41:58 +08:00 committed by 刘瑞斌
parent dc6a1f095e
commit f912c5c0b8
2 changed files with 26 additions and 25 deletions

View File

@ -200,7 +200,7 @@ export default {
* upload file methods
*/
fileValidator(file) {
return file.size < 500 * 1024 * 1024;
return file.size < 50 * 1024 * 1024;
},
beforeUpload(file) {
if (!this.fileValidator(file)) {

View File

@ -856,16 +856,16 @@ export default {
}
},
fileValidator(file) {
return file.size < 500 * 1024 * 1024;
return file.size < 50 * 1024 * 1024;
},
beforeUpload(file) {
if (!this.fileValidator(file)) {
this.$error(this.$t("load_test.file_size_out_of_bounds") + file.name);
this.$error(this.$t("case.file_size_out_of_bounds"), false);
return false;
}
if (this.tableData.filter((f) => f.name === file.name).length > 0) {
this.$error(this.$t("load_test.delete_file") + ", name: " + file.name);
this.$error(this.$t("load_test.delete_file") + ", name: " + file.name, false);
return false;
}
},
@ -917,6 +917,7 @@ export default {
progress = 100;
param.onSuccess(response);
progressCallback({ progress, status: "success" });
self.$success(this.$t('attachment.upload_success'), false)
self.cancelFileToken.forEach((token, index, array) => {
if (token.name == file.name) {
array.splice(token, 1);
@ -1011,7 +1012,7 @@ export default {
this.filterCopyFiles.push(file.id);
} else {
deleteIssueAttachment(file.id).then(() => {
this.$success(this.$t("commons.delete_success"));
this.$success(this.$t("commons.delete_success"), false);
this.getFileMetaData(this.issueId);
});
}