refactor(性能测试): 去掉上传文件最大数量限制
--bug=1018520 --user=刘瑞斌 【性能测试】github#18629,性能测试中文件上传有数量限制,删除文件后再上传还会提示超过数量限制 https://www.tapd.cn/55049933/s/1269205 Closes #18629
This commit is contained in:
parent
b1b0317ff4
commit
07357b4e47
|
@ -12,7 +12,6 @@
|
||||||
accept=".jmx"
|
accept=".jmx"
|
||||||
action=""
|
action=""
|
||||||
multiple
|
multiple
|
||||||
:limit="fileNumLimit"
|
|
||||||
:show-file-list="false"
|
:show-file-list="false"
|
||||||
:before-upload="beforeUploadFile"
|
:before-upload="beforeUploadFile"
|
||||||
:http-request="handleUpload"
|
:http-request="handleUpload"
|
||||||
|
@ -27,7 +26,6 @@
|
||||||
style="margin-bottom: 10px"
|
style="margin-bottom: 10px"
|
||||||
accept=".jar,.csv,.json,.pdf,.jpg,.png,.jpeg,.doc,.docx,.xlsx,.txt,.der,.cer,.pem,.crt,.pfx,.p12,.jks"
|
accept=".jar,.csv,.json,.pdf,.jpg,.png,.jpeg,.doc,.docx,.xlsx,.txt,.der,.cer,.pem,.crt,.pfx,.p12,.jks"
|
||||||
action=""
|
action=""
|
||||||
:limit="fileNumLimit"
|
|
||||||
multiple
|
multiple
|
||||||
:show-file-list="false"
|
:show-file-list="false"
|
||||||
:before-upload="beforeUploadFile"
|
:before-upload="beforeUploadFile"
|
||||||
|
@ -68,7 +66,6 @@
|
||||||
style="width: 38px; float: left;"
|
style="width: 38px; float: left;"
|
||||||
accept=".jmx,.jar,.csv,.json,.pdf,.jpg,.png,.jpeg,.doc,.docx,.xlsx,.txt,.der,.cer,.pem,.crt,.pfx,.p12,.jks"
|
accept=".jmx,.jar,.csv,.json,.pdf,.jpg,.png,.jpeg,.doc,.docx,.xlsx,.txt,.der,.cer,.pem,.crt,.pfx,.p12,.jks"
|
||||||
action=""
|
action=""
|
||||||
:limit="fileNumLimit"
|
|
||||||
:show-file-list="false"
|
:show-file-list="false"
|
||||||
:before-upload="beforeUpdateUploadFile"
|
:before-upload="beforeUpdateUploadFile"
|
||||||
:http-request="handleUpdateUpload"
|
:http-request="handleUpdateUpload"
|
||||||
|
@ -132,7 +129,6 @@ export default {
|
||||||
loadType: 'jmx',
|
loadType: 'jmx',
|
||||||
existFiles: [],
|
existFiles: [],
|
||||||
selectIds: new Set,
|
selectIds: new Set,
|
||||||
fileNumLimit: 10,
|
|
||||||
condition: {},
|
condition: {},
|
||||||
projectId: getCurrentProjectID()
|
projectId: getCurrentProjectID()
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue