utils.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. import Vue from 'vue'
  2. import dayjs from 'dayjs'
  3. const utils = {
  4. // 检查是否登录
  5. checkLogin() {
  6. if (this.getCookie('shop-token')) {
  7. return true;
  8. } else {
  9. return false;
  10. }
  11. },
  12. getCookie(cname) {
  13. const name = cname + "=";
  14. const ca = document.cookie.split(';');
  15. for (let i = 0; i < ca.length; i++) {
  16. const c = ca[i].trim();
  17. if (c.indexOf(name) === 0) return c.substring(name.length, c.length);
  18. }
  19. return "";
  20. },
  21. checkType(val) {
  22. return Object.prototype.toString.call(val).slice(8, -1)
  23. },
  24. // 时间格式化. 格式参考 https://day.js.org/docs/zh-CN/display/format
  25. formatTime(date, format = 'DD-MM-YYYY HH:mm:ss', isUnix = false) {
  26. let str = ''
  27. if (date) {
  28. str = isUnix ? dayjs.unix(date).format(format) : dayjs(date).format(format)
  29. }
  30. return str
  31. },
  32. /**
  33. * @deprecated 处理 pdf url,使其不在浏览器打开
  34. * @param {string} url
  35. */
  36. downloadBlob(url, filename) {
  37. fetch(url, {
  38. method: 'get',
  39. responseType: 'arraybuffer',
  40. })
  41. .then(function (res) {
  42. if (res.status !== 200) {
  43. return res.json()
  44. }
  45. return res.arrayBuffer()
  46. })
  47. .then((blobRes) => {
  48. // 生成 Blob 对象,设置 type 等信息
  49. const e = new Blob([blobRes], {
  50. type: 'application/octet-stream',
  51. 'Content-Disposition': 'attachment'
  52. })
  53. // 将 Blob 对象转为 url
  54. const link = window.URL.createObjectURL(e)
  55. this.handleFileDownload(link, filename)
  56. }).catch(err => {
  57. console.error(err)
  58. })
  59. },
  60. handleFileDownload(url, filename, download = true) {
  61. const a = document.createElement('a');
  62. a.href = url;
  63. a.download = download && filename;
  64. a.target = '_blank';
  65. a.click();
  66. },
  67. isEmail(s) {
  68. return /^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((.[a-zA-Z0-9_-]{2,3}){1,2})$/.test(s)
  69. },
  70. isMobile(s) {
  71. return /^1[0-9]{10}$/.test(s)
  72. },
  73. // 亚马逊图像尺寸缩略
  74. generateResizedImageUrl(urlString, width) {
  75. if (urlString) {
  76. const extractedString = urlString.replace(/^https?:\/\/[^/]+/, '');
  77. const resizedImageUrl = `${Vue.prototype.$OSS_PREFIX}/fit-in/${width}x0${extractedString}`;
  78. return resizedImageUrl;
  79. }
  80. },
  81. // 链接替换
  82. repaceDomain(urlString) {
  83. if (urlString) {
  84. const extractedString = urlString.replace(/^https?:\/\/[^/]+/, '');
  85. const resizedImageUrl = `${Vue.prototype.$OSS_S3_PREFIX}${extractedString}`;
  86. return resizedImageUrl;
  87. }
  88. }
  89. }
  90. Vue.prototype.$utils = utils;