util.js 2.4 KB

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