isImageType.js 337 B

123456789101112
  1. export default {
  2. checkFile: function (val) {
  3. const imageType = ['image/jpeg', 'image/png', 'image/jpg', 'application/pdf']
  4. const isImage = imageType.indexOf(val.toLocaleLowerCase()) == -1 ? false : true;
  5. return isImage
  6. },
  7. checkSize: function (val) {
  8. const isSize = val / 1024 / 1024 < 20;
  9. return isSize
  10. },
  11. }