util.js 2.2 KB

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