YD_WeChatApplet/utils/soprt-key.js

63 lines
1.2 KiB
JavaScript
Raw Permalink Normal View History

2025-06-06 15:17:30 +08:00
let sportKeyList = [{
"key": "Rope-Skipping",
"name": "跳绳",
}, {
"key": "Jumping-Jack",
"name": "开合跳",
}, {
"key": "Sit-Up",
"name": "仰卧起坐",
}, {
"key": "Push-Up",
"name": "俯卧撑",
}, {
"key": "Crunch",
"name": "卷腹",
}, {
"key": "Squat",
"name": "深蹲起",
}, {
"key": "Plank",
"name": "平板支撑",
}, {
"key": "High-Knee",
"name": "高抬腿",
}, {
"key": "Squat-Horse",
"name": "马步蹲",
}, {
"key": "Sit-Forward-Bend",
"name": "坐位体前屈",
}]
let sportNameObj = {
"跳绳": "Rope-Skipping",
"开合跳": "Jumping-Jack",
"仰卧起坐": "Sit-Up",
"俯卧撑": "Push-Up",
"卷腹": "Crunch",
"深蹲起": "Squat",
"平板支撑": "Plank",
"高抬腿": "High-Knee",
"马步蹲": "Squat-Horse",
"坐位体前屈": "Sit-Forward-Bend"
}
let sportKeyObj = {
"Rope-Skipping":"跳绳",
"Jumping-Jack":"开合跳",
"Sit-Up":"仰卧起坐",
"Push-Up":"俯卧撑",
"Crunch":"卷腹",
"Squat":"深蹲起",
"Plank":"平板支撑",
"High-Knee":"高抬腿",
"Squat-Horse":"马步蹲",
"Sit-Forward-Bend":"坐位体前屈",
}
module.exports = {
sportKeyList,
sportNameObj,
sportKeyObj
}