util.js 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. import dayjs from 'dayjs'
  2. import duration from 'dayjs/plugin/duration'
  3. dayjs.extend(duration);
  4. const systemInfo = uni.getSystemInfoSync();
  5. const Language = systemInfo.language == 'zh_CN' ? 'zh' : 'en' // 'zh' | 'en'
  6. const formatTime = (date) => {
  7. const year = date.getFullYear();
  8. const month = date.getMonth() + 1;
  9. const day = date.getDate();
  10. const hour = date.getHours();
  11. const minute = date.getMinutes();
  12. const second = date.getSeconds();
  13. return [year, month, day].map(formatNumber).join('/') + ' ' + [hour, minute, second].map(formatNumber).join(
  14. ':');
  15. };
  16. const getLocation = async () => {
  17. let res = await uni.getLocation({
  18. type: 'wgs84',
  19. // success: function (res) {
  20. // console.log('当前位置的经度:' + res.longitude);
  21. // console.log('当前位置的纬度:' + res.latitude);
  22. // }
  23. });
  24. return res[1]
  25. }
  26. const msg = (str) => {
  27. uni.showToast({
  28. title: str,
  29. icon:'none'
  30. })
  31. }
  32. /**
  33. * 计算剩余时间
  34. * @param {string|dayjs.Dayjs} startTime - 开始时间(字符串或dayjs对象)
  35. * @param {string|dayjs.Dayjs} endTime - 结束时间(字符串或dayjs对象)
  36. * @returns {string} - 返回剩余时间,格式为 "X天Y小时Z分钟" 或 "<小于1分钟"
  37. */
  38. function getRemainingTime(startTime, endTime,type = 0) {
  39. // 确保时间是dayjs对象
  40. const start = dayjs(startTime);
  41. const end = dayjs(endTime);
  42. // 计算时间差
  43. const diff = dayjs.duration(end.diff(start));
  44. // 如果小于1分钟
  45. if (diff.asMinutes() < 1) {
  46. return '<小于1分钟';
  47. }
  48. // 获取天数、小时数和分钟数
  49. const days = diff.days();
  50. const hours = diff.hours();
  51. const minutes = diff.minutes();
  52. if(type){
  53. return {
  54. days,
  55. hours,
  56. minutes,
  57. }
  58. }
  59. // 返回格式化后的字符串
  60. return `${days}天${hours}小时${minutes}分`;
  61. }
  62. //价格转换
  63. function fenToYuan(fen) {
  64. const roundedFen = Math.round(Number(fen));
  65. return Number((roundedFen / 100).toFixed(2));
  66. }
  67. const strJoin = (str) => {
  68. if (!str) return []
  69. return JSON.parse(str)
  70. }
  71. const formatNumber = (n) => {
  72. n = n.toString();
  73. return n[1] ? n : '0' + n;
  74. };
  75. function isEmail(email) {
  76. if(!email) return false
  77. // 正则表达式用于匹配邮箱格式
  78. const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
  79. return emailRegex.test(email);
  80. }
  81. module.exports = {
  82. Language,
  83. isEmail,
  84. formatTime: formatTime,
  85. getLocation,
  86. msg,
  87. strJoin,
  88. fenToYuan,
  89. getRemainingTime
  90. };