flx:修改上传文件的默认大小限制

This commit is contained in:
X_Rian 2024-07-25 16:01:34 +08:00
parent d4e55efd0e
commit 508e43b52c

View File

@ -205,8 +205,8 @@ const getType = (type: Type) => {
};
const props = withDefaults(defineProps<Props>(), {
maxFileSize: 5 * 1024 * 1024,
maxTotalFileSize: 50 * 1024 * 1024,
maxFileSize: 500 * 1024 * 1024,
maxTotalFileSize: 500 * 1024 * 1024,
checkDuplicateFile: true,
timeout: 30000
});