util.js 2.4 KB

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