hookehuyr

fix

......@@ -99,7 +99,7 @@ const beforeRead = (file) => {
if (fileList.value.length + file.length > props.item.component_props.max_count) {
// 数量限制
flag = false;
showToast(`最大上传数量为${props.item.component_props.max_count}`);
showToast(`最大上传数量为${props.item.component_props.max_count}`);
}
} else {
if (!_.includes(image_types, file.type)) {
......@@ -109,7 +109,7 @@ const beforeRead = (file) => {
if (fileList.value.length + 1 > props.item.component_props.max_count) {
// 数量限制
flag = false;
showToast(`最大上传数量为${props.item.component_props.max_count}`);
showToast(`最大上传数量为${props.item.component_props.max_count}`);
}
if (file.size > props.item.component_props.max_size) {
// 体积限制
......