util.js 932 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. const formatTime = (date) => {
  2. const year = date.getFullYear();
  3. const month = date.getMonth() + 1;
  4. const day = date.getDate();
  5. const hour = date.getHours();
  6. const minute = date.getMinutes();
  7. const second = date.getSeconds();
  8. return [year, month, day].map(formatNumber).join('/') + ' ' + [hour, minute, second].map(formatNumber).join(':');
  9. };
  10. const getLocation = async ()=>{
  11. let res = await uni.getLocation({
  12. type: 'wgs84',
  13. // success: function (res) {
  14. // console.log('当前位置的经度:' + res.longitude);
  15. // console.log('当前位置的纬度:' + res.latitude);
  16. // }
  17. });
  18. return res[1]
  19. }
  20. const msg = (str)=>{
  21. uni.showToast({
  22. title:str
  23. })
  24. }
  25. const strJoin = (str)=>{
  26. if(!str) return []
  27. return JSON.parse(str)
  28. }
  29. const formatNumber = (n) => {
  30. n = n.toString();
  31. return n[1] ? n : '0' + n;
  32. };
  33. module.exports = {
  34. formatTime: formatTime,
  35. getLocation,
  36. msg,
  37. strJoin
  38. };