useUploadFile.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 uploadFile = async (imgObj, type, incidentId) => {
  17. const res = await uni.getImageInfo({src: imgObj.url});
  18. console.log('压缩前', res)
  19. let canvasWidth = res.width //图片原始长宽
  20. let canvasHeight = res.height
  21. let img = new Image()
  22. img.src = res.path
  23. let canvas = document.createElement('canvas');
  24. let ctx = canvas.getContext('2d')
  25. canvas.width = canvasWidth
  26. canvas.height = canvasHeight
  27. ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight)
  28. const fileSrc = await toBlob(canvas, imgObj)
  29. let tp = window.URL.createObjectURL(fileSrc)
  30. console.log('压缩后', tp);
  31. return uni.uploadFile({
  32. url: api_uploadAttachment(type, incidentId),
  33. filePath: tp,
  34. name: 'file',
  35. formData: {
  36. 'filename': imgObj.name
  37. }
  38. });
  39. }
  40. return {
  41. uploadFile
  42. };
  43. }