useUploadFile.js 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. import { api_uploadAttachment } from "@/http/api.js"
  2. export function useUploadFile() {
  3. /**
  4. * 压缩
  5. */
  6. const toBlob = (canvas, imgObj) => {
  7. return new Promise((resolve,reject) => {
  8. canvas.toBlob((fileSrc) => {
  9. resolve(fileSrc)
  10. }, `${imgObj.fileType}/${imgObj.extname}`, 0.3)
  11. })
  12. }
  13. /**
  14. * 图片加载完成
  15. */
  16. const newImage = (img) => {
  17. return new Promise((resolve,reject) => {
  18. img.onload = () => {
  19. resolve()
  20. }
  21. })
  22. }
  23. /**
  24. * 上传图片
  25. */
  26. const uploadFile = async (imgObj, type, incidentId) => {
  27. console.log('44444', type)
  28. if(imgObj.extname=='mp4' || imgObj.extname=='avi' || imgObj.extname=='mpeg' ||
  29. imgObj.extname=='wmv' || imgObj.extname=='mov' || imgObj.extname=='3gp' ||
  30. imgObj.extname=='flv' || imgObj.extname=='mkv'){
  31. return uni.uploadFile({
  32. url: api_uploadAttachment(type, incidentId),
  33. filePath: imgObj.path,
  34. name: 'file',
  35. formData: {
  36. 'filename': imgObj.name
  37. }
  38. })
  39. }else{
  40. const res = await uni.getImageInfo({src: imgObj.url});
  41. console.log('压缩前', res)
  42. let canvasWidth = res.width //图片原始长宽
  43. let canvasHeight = res.height
  44. let img = new Image()
  45. img.src = res.path
  46. let canvas = document.createElement('canvas');
  47. let ctx = canvas.getContext('2d')
  48. canvas.width = canvasWidth
  49. canvas.height = canvasHeight
  50. await newImage(img)
  51. ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight)
  52. const fileSrc = await toBlob(canvas, imgObj)
  53. let tp = window.URL.createObjectURL(fileSrc)
  54. console.log('压缩后', tp);
  55. return uni.uploadFile({
  56. url: api_uploadAttachment(type, incidentId),
  57. filePath: tp,
  58. name: 'file',
  59. formData: {
  60. 'filename': imgObj.name
  61. }
  62. });
  63. }
  64. }
  65. return {
  66. uploadFile
  67. };
  68. }