dataDictionary.ts 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. let data = {
  2. gradeObj: {
  3. one: '一年级',
  4. two: '二年级',
  5. three: '三年级',
  6. four: '四年级',
  7. five: '五年级',
  8. six: '六年级',
  9. m_one: '初一',
  10. m_two: '初二',
  11. m_three: '初三',
  12. h_one: '高一',
  13. h_two: '高二',
  14. h_three: '高三',
  15. u_one: '大一',
  16. u_two: '大二',
  17. u_three: '大三',
  18. u_four: '大四'
  19. },
  20. project: {
  21. jump: '立定跳远',
  22. longjump: '急行跳远',
  23. verticaljump: '纵跳摸高',
  24. pullup: '引体向上',
  25. situp: '仰卧起坐',
  26. solidball: '实心球',
  27. shotput: '铅球',
  28. trijump: '三级蛙跳',
  29. sidepullup: '斜身引体',
  30. jumprope: '跳绳',
  31. jumpingjack: '开合跳',
  32. run50: '50米',
  33. run60: '60米',
  34. run70: '70米',
  35. run100: '100米',
  36. run200: '200米',
  37. run400: '400米',
  38. run800: '800米',
  39. runa800: '脚环800',
  40. runa1000: '脚环1000',
  41. run1000: '1000米',
  42. skiprope: '智慧跳绳',
  43. heartbeat: '心率监测',
  44. bmi: 'BMI',
  45. sitforbend: '坐位体前屈',
  46. vitalcap: '肺活量',
  47. run15x4: '15x4往返跑',
  48. run50x8: '50x8往返跑',
  49. run10x4: '10x4往返跑',
  50. swim100: '游泳100米',
  51. swim200: '游泳200米',
  52. footballv1: '足球v1',
  53. basketballv1: '篮球v1',
  54. volleyball: '排球',
  55. pingpong: '乒乓球',
  56. badminton: '羽毛球',
  57. tennis: '网球',
  58. wushu: '武术',
  59. gymnastic: '体操',
  60. grip: '肌力'
  61. },
  62. unit: {
  63. jump: '厘米',
  64. longjump: '米',
  65. verticaljump: '厘米',
  66. solidball: '米',
  67. shotput: '米',
  68. trijump: '米',
  69. run50: '秒',
  70. run70: '秒',
  71. run100: '秒',
  72. run200: '秒',
  73. run400: '秒',
  74. run800: '秒',
  75. run1000: '秒',
  76. runa800: '秒',
  77. runa1000: '秒',
  78. situp: '个',
  79. pullup: '个',
  80. sidepullup: '个',
  81. jumprope: '个',
  82. jumpingjack: '个',
  83. skiprope: '个',
  84. heartbeat: '次/分',
  85. bmi: '',
  86. sitforbend: '厘米',
  87. vitalcap: '毫升',
  88. grip: '千克力'
  89. },
  90. // 如果没有统一的结果key, 以下每个项目的结果key . 如: 立定跳远 jump 的结果key为distance
  91. typeResultKey: {
  92. jump: 'distance',
  93. longjump: 'distance',
  94. verticaljump: 'height',
  95. trijump: 'distance',
  96. pullup: 'counts',
  97. situp: 'counts',
  98. sidepullup: 'counts',
  99. solidball: 'distance',
  100. shotput: 'distance',
  101. run50: 'times',
  102. run70: 'times',
  103. run100: 'times',
  104. run200: 'times',
  105. run400: 'times',
  106. run800: 'time',
  107. run1000: 'time',
  108. jumprope: 'counts',
  109. jumpingjack: 'counts',
  110. skiprope: 'counts',
  111. heartbeat: 'counts',
  112. bmi: 'bmi',
  113. sitforbend: 'result',
  114. vitalcap: 'result',
  115. footballv1: 'result',
  116. basketballv1: 'result',
  117. volleyball: 'result',
  118. pingpong: 'result',
  119. badminton: 'result',
  120. runa800: 'result',
  121. runa1000: 'result'
  122. }
  123. };
  124. export default data;