consts.js 918 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. ]
  53. export const cardTypeMap = {
  54. CLIENT: 0, // 客户
  55. COMPANY: 1, // 单位
  56. BUSINESS: 2, // 商机
  57. SERVICE: 3 // 服务记录
  58. }