hookehuyr

fix(UploadMedia): 仅对图片文件进行10MB大小限制检查

视频文件不再受大小限制,仅当上传图片且超过10MB时显示错误提示
......@@ -200,10 +200,10 @@ const chooseMedia = () => {
success: async (res) => {
const file = res.tempFiles[0];
// 检查文件大小(10MB限制
if (file.size > 10 * 1024 * 1024) {
// 检查文件大小(仅对图片进行10MB限制,视频不检查大小
if (file.fileType === 'image' && file.size > 10 * 1024 * 1024) {
Taro.showToast({
title: '文件大小不能超过10MB',
title: '图片大小不能超过10MB',
icon: 'none',
duration: 2000
});
......