constant.js 434 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. export const nianji_list = [{
  2. label: '一年级',
  3. id: 1
  4. },
  5. {
  6. label: '二年级',
  7. id: 2
  8. },
  9. {
  10. label: '三年级',
  11. id: 3
  12. },
  13. {
  14. label: '四年级',
  15. id: 4
  16. },
  17. {
  18. label: '五年级',
  19. id: 5
  20. },
  21. {
  22. label: '六年级',
  23. id: 6
  24. },
  25. ];
  26. export const SHUXUE = 1; // 数学
  27. export const YINGYU = 1; // 英语
  28. export const xueke_list = [
  29. {
  30. label: "数学",
  31. id: SHUXUE
  32. },
  33. {
  34. label: "英语",
  35. id: YINGYU
  36. }
  37. ]