index.js 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /**
  2. * 提示框
  3. * @param {string} title 显示的标题
  4. * @param {string} icon 显示的 icon
  5. * @param {number} icon 显示的毫秒数
  6. */
  7. export const showToast = (title, icon = "none", time = 2000) => {
  8. uni.showToast({
  9. title: title,
  10. icon: icon,
  11. duration: time,
  12. });
  13. };
  14. /**
  15. * 显示隐藏加载的 loading 状态
  16. * @param {string} title 显示的标题
  17. */
  18. export const loading = {
  19. show(title) {
  20. uni.showLoading({
  21. title: title || "加载中",
  22. });
  23. },
  24. hide() {
  25. uni.hideLoading();
  26. },
  27. };
  28. /**
  29. * @param {number} number 判断需要返回的数据 2 为 2019-01 3为 2019-01-01
  30. * 显获取当前日期 要求2019-01-01 格式
  31. */
  32. export const getNowDate = (number) => {
  33. let date = new Date();
  34. let year = date.getFullYear();
  35. let month = date.getMonth() + 1;
  36. let day = date.getDate();
  37. if (number == 2) {
  38. return `${year}-${month < 10? '0'+month:month}`;
  39. } else if (number == 3) {
  40. return `${year}-${month < 10? '0'+month:month}-${day < 10? '0'+day:day}`;
  41. }
  42. };