let _suffix = res.fileExt || res.fileExt.substring(1);
console.log(res.fileExt.substring(1))
if (_suffix == 'jpeg' || _suffix == 'jpg' || _suffix == 'png' || _suffix == 'bmp'|| _suffix == 'gif' ) {
alert(1);
this.fileDetail.iFileType = 'img'
}else if(_suffix == 'mov' || _suffix == 'avi' || _suffix == 'rm' || _suffix == 'rmvb' || _suffix == 'mpeg' || _suffix == 'mpg'){
this.fileDetail.iFileType = 'video'
}else{
this.fileDetail.iFileType = 'none'
}
九州编程
相关分类