提交 a03e4c40 编写于 作者: jlj05024111@163.com's avatar jlj05024111@163.com

fix: 修复上传白名单异常问题

上级 c72adfad
...@@ -227,10 +227,11 @@ export function useIBizUpload(opts: { ...@@ -227,10 +227,11 @@ export function useIBizUpload(opts: {
); );
return true; return true;
} }
const type = item.name.split('.').pop() || '';
if ( if (
controller.whiteList && controller.whiteList &&
controller.whiteList.length > 0 && controller.whiteList.length > 0 &&
!controller.whiteList.includes(item.name) !controller.whiteList.includes(type)
) { ) {
ibiz.message.error(`${item.name} 文件格式不正确`, 2.5, true); ibiz.message.error(`${item.name} 文件格式不正确`, 2.5, true);
return true; return true;
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册