MrShi
4 天以前 4fabfe4dbd2eb28d07a4350597d314958cc1c281
admin/src/utils/util.js
@@ -18,22 +18,3 @@
  }
  return data
}
/**
 * 根据文件url 返回文件类型
 * @param {文件url} url
 * @returns 1、图片类型  2、pdf类型 3、其他类型
 */
export function fileType(url) {
  let lastStr = url.slice(url.lastIndexOf('.')+1).toLocaleLowerCase()
  if (['bmp','jpg','jpeg','png','tif','gif','pcx','tga','exif','fpx','svg','psd','cdr','pcd','dxf','ufo','eps','ai','raw','WMF','webp','avif','apng'].indexOf(lastStr) != -1) {
    // 图片
    return 1
  } else if (lastStr === 'pdf') {
    // pdf
    return 2
  } else {
    // 其他
    return 3
  }
}