consts.js 797 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. export const cyclicalOp = [
  2. {
  3. label: '今天',
  4. value: 'today',
  5. title: '较昨天'
  6. },
  7. {
  8. label: '昨天',
  9. value: 'yesterday',
  10. title: '较前天'
  11. },
  12. {
  13. label: '本周',
  14. value: 'week',
  15. title: '较上周'
  16. },
  17. {
  18. label: '上周',
  19. value: 'lastWeek',
  20. title: '较前周'
  21. },
  22. {
  23. label: '本月',
  24. value: 'month',
  25. title: '较上月'
  26. },
  27. {
  28. label: '上月',
  29. value: 'lastMonth',
  30. title: '较上上月'
  31. },
  32. {
  33. label: '本季度',
  34. value: 'quarter',
  35. title: '较上季度'
  36. },
  37. {
  38. label: '上季度',
  39. value: 'lastQuarter',
  40. title: '教上上季度'
  41. },
  42. {
  43. label: '本年',
  44. value: 'year',
  45. title: '较去年'
  46. },
  47. {
  48. label: '去年',
  49. value: 'lastYear',
  50. title: '较前年'
  51. }
  52. ]