utils.js 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. import Vue from 'vue'
  2. import dayjs from 'dayjs'
  3. import { Message } from 'element-ui';
  4. const utils = {
  5. // 检查是否登录
  6. checkLogin() {
  7. if (this.getCookie('token')) {
  8. return true;
  9. } else {
  10. return false;
  11. }
  12. },
  13. getCookie(cname) {
  14. const name = cname + "=";
  15. const ca = document.cookie.split(';');
  16. for (let i = 0; i < ca.length; i++) {
  17. const c = ca[i].trim();
  18. if (c.indexOf(name) === 0) return c.substring(name.length, c.length);
  19. }
  20. return "";
  21. },
  22. checkType(val) {
  23. return Object.prototype.toString.call(val).slice(8, -1)
  24. },
  25. // 时间格式化. 格式参考 https://day.js.org/docs/zh-CN/display/format
  26. formatTime(date, format = 'DD-MM-YYYY HH:mm:ss', isUnix = false) {
  27. let str = ''
  28. if (date) {
  29. str = isUnix ? dayjs.unix(date).format(format) : dayjs(date).format(format)
  30. }
  31. return str
  32. },
  33. /**
  34. * @deprecated 处理 pdf url,使其不在浏览器打开
  35. * @param {string} url
  36. */
  37. downloadBlob(url, filename) {
  38. fetch(url, {
  39. method: 'get',
  40. responseType: 'arraybuffer',
  41. })
  42. .then(function (res) {
  43. if (res.status !== 200) {
  44. return res.json()
  45. }
  46. return res.arrayBuffer()
  47. })
  48. .then((blobRes) => {
  49. // 生成 Blob 对象,设置 type 等信息
  50. const e = new Blob([blobRes], {
  51. type: 'application/octet-stream',
  52. 'Content-Disposition': 'attachment'
  53. })
  54. // 将 Blob 对象转为 url
  55. const link = window.URL.createObjectURL(e)
  56. this.handleFileDownload(link, filename)
  57. }).catch(err => {
  58. console.error(err)
  59. })
  60. },
  61. downloadXhr(url, filename) {
  62. const xhr = new XMLHttpRequest();
  63. xhr.open('GET', url, true);
  64. xhr.responseType = 'arraybuffer';
  65. let messageInstance = Message({
  66. message: 'Downloading...',
  67. duration: 0,
  68. type: 'info'
  69. });
  70. xhr.onprogress = (event) => {
  71. if (event.lengthComputable) {
  72. const percentComplete = Math.round((event.loaded / event.total) * 100);
  73. messageInstance.message = `Downloading...${percentComplete}%`;
  74. }
  75. };
  76. xhr.onload = () => {
  77. if (xhr.status >= 200 && xhr.status < 300) {
  78. const blob = new Blob([xhr.response], { type: 'application/octet-stream' });
  79. const link = window.URL.createObjectURL(blob);
  80. this.handleFileDownload(link, filename);
  81. setTimeout(() => {
  82. Message.closeAll();
  83. }, 1000)
  84. } else {
  85. Message.error('Download failed');
  86. }
  87. };
  88. xhr.onerror = () => {
  89. Message.closeAll();
  90. Message.error('Download failed');
  91. // 不知为何,传参了个空的a标签,浏览器可下载形式下载了跨域 https,而不是打开文件
  92. // const link = document.createElement('a');
  93. // this.handleFileDownload(link, filename);
  94. };
  95. xhr.send();
  96. },
  97. handleFileDownload(url, filename, download = true) {
  98. const a = document.createElement('a');
  99. a.href = url;
  100. a.download = download && filename;
  101. a.target = '_blank';
  102. document.body.appendChild(a);
  103. a.click();
  104. document.body.removeChild(a);
  105. },
  106. isEmail(s) {
  107. return /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((.[a-zA-Z0-9_-]{2,3}){1,2})$/.test(s)
  108. },
  109. isMobile(s) {
  110. return /^1[0-9]{10}$/.test(s)
  111. },
  112. // 亚马逊图像尺寸缩略
  113. generateResizedImageUrl(urlString, width) {
  114. if (urlString) {
  115. const extractedString = urlString.replace(/^https?:\/\/[^/]+/, '');
  116. const resizedImageUrl = `${Vue.prototype.$OSS_PREFIX}/fit-in/${width}x0${extractedString}`;
  117. return resizedImageUrl;
  118. }
  119. },
  120. // 链接替换
  121. repaceDomain(urlString) {
  122. if (urlString) {
  123. const extractedString = urlString.replace(/^https?:\/\/[^/]+/, '');
  124. const resizedImageUrl = `${Vue.prototype.$OSS_S3_PREFIX}${extractedString}`;
  125. return resizedImageUrl;
  126. }
  127. }
  128. }
  129. Vue.prototype.$utils = utils;