tools.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. import {
  2. API_URL
  3. } from '@/env'
  4. import {
  5. router
  6. } from '@/shopro/router'
  7. export default {
  8. /**
  9. * 跳转再封装,主要是为了兼容外链。
  10. * @param {String} path - 跳转路径
  11. * @param {isTabbar} isTabbar - 是否是底部导航
  12. */
  13. routerTo(path, isTabbar) {
  14. if (path) {
  15. // 是否跳转外部链接
  16. if (~path.indexOf('http') || ~path.indexOf('www')) {
  17. // #ifdef H5
  18. window.location = path;
  19. // #endif
  20. // #ifndef H5
  21. router.push({
  22. path: '/pages/public/webview',
  23. query: {
  24. 'webviewPath': path
  25. }
  26. })
  27. // #endif
  28. return false
  29. }
  30. if (isTabbar) {
  31. router.replaceAll(path)
  32. } else {
  33. path.includes('/pages/index') && !path.includes('/pages/index/view') ? router.replaceAll(path) : router
  34. .push(path)
  35. }
  36. } else {
  37. console.log(`%cerr:没有填写跳转路径`, 'color:green;background:yellow');
  38. }
  39. },
  40. /**
  41. * 图片处理-预览图片
  42. * @param {Array} urls - 图片列表
  43. * @param {Number} current - 首个预览下标
  44. */
  45. previewImage(urls = [], current = 0) {
  46. uni.previewImage({
  47. urls: urls,
  48. current: current,
  49. indicator: 'default',
  50. loop: true,
  51. fail(err) {
  52. console.log('previewImage出错', urls, err)
  53. },
  54. })
  55. },
  56. /**
  57. * 数据分组
  58. * @param {Array} oArr - 原数组列表
  59. * @param {Number} length - 单个数组长度
  60. * @return {Array} arr - 分组后的新数组
  61. */
  62. splitData(oArr = [], length = 1) {
  63. let arr = [];
  64. let minArr = [];
  65. oArr.forEach(c => {
  66. if (minArr.length === length) {
  67. minArr = [];
  68. }
  69. if (minArr.length === 0) {
  70. arr.push(minArr);
  71. }
  72. minArr.push(c);
  73. });
  74. return arr;
  75. },
  76. /**
  77. * 剩余时间格式化
  78. * @param {Number} t - 剩余多少秒
  79. * @return {Object} format - 格式后的天时分秒对象
  80. */
  81. format(t) {
  82. let format = {
  83. d: '00',
  84. h: '00',
  85. m: '00',
  86. s: '00'
  87. };
  88. if (t > 0) {
  89. let d = Math.floor(t / 86400);
  90. let h = Math.floor((t / 3600) % 24);
  91. let m = Math.floor((t / 60) % 60);
  92. let s = Math.floor(t % 60);
  93. format.d = d < 10 ? '0' + d : d;
  94. format.h = h < 10 ? '0' + h : h;
  95. format.m = m < 10 ? '0' + m : m;
  96. format.s = s < 10 ? '0' + s : s;
  97. }
  98. return format;
  99. },
  100. /**
  101. * 打电话
  102. * @param {String<Number>} phoneNumber - 数字字符串
  103. */
  104. callPhone(phoneNumber = '') {
  105. let num = phoneNumber.toString()
  106. uni.makePhoneCall({
  107. phoneNumber: num,
  108. fail(err) {
  109. console.log('makePhoneCall出错', err)
  110. },
  111. });
  112. },
  113. /**
  114. * 微信头像
  115. * @param {String} url -图片地址
  116. */
  117. checkMPUrl(url) {
  118. // #ifdef MP
  119. if (
  120. url.substring(0, 4) === 'http' &&
  121. url.substring(0, 5) !== 'https' &&
  122. url.substring(0, 12) !== 'http://store' &&
  123. url.substring(0, 10) !== 'http://tmp' &&
  124. url.substring(0, 10) !== 'http://usr'
  125. ) {
  126. url = 'https' + url.substring(4, url.length);
  127. }
  128. // #endif
  129. return url;
  130. },
  131. }