config.js 551 B

1234567891011121314151617181920212223242526272829303132333435
  1. // 报告频度配置项
  2. export const reportFrequencyOpts=[
  3. {
  4. text:'年度',
  5. value:'年度'
  6. },
  7. {
  8. text:'半年度',
  9. value:'半年度'
  10. },
  11. {
  12. text:'季度',
  13. value:'季度'
  14. },
  15. {
  16. text:'月度',
  17. value:'月度'
  18. },
  19. {
  20. text:'双周度',
  21. value:'双周度'
  22. },
  23. {
  24. text:'周度',
  25. value:'周度'
  26. },
  27. {
  28. text:'日度',
  29. value:'日度'
  30. },
  31. {
  32. text:'不定时',
  33. value:'不定时'
  34. },
  35. ]