math-lists.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. import mathImg from "./math-imgs"
  2. module.exports = [
  3. {
  4. title: "万能计算",
  5. coverImage: mathImg.normal.cover,
  6. url: "/pages/formula/normal"
  7. },
  8. {
  9. title: "切口计算",
  10. coverImage: mathImg.slice.cover,
  11. url: "/pages/formula/slice"
  12. },
  13. {
  14. title: "角度计算",
  15. coverImage: mathImg.angle.cover,
  16. url: "/pages/formula/angle"
  17. },
  18. {
  19. title: "任意三角形计算",
  20. coverImage: mathImg.anytriangle.cover,
  21. url: "/pages/formula/anytriangle"
  22. },
  23. {
  24. title: "任意角度弯计算",
  25. coverImage: mathImg.anyangle.cover,
  26. url: "/pages/formula/anyangle"
  27. },
  28. {
  29. title: "直角弯计算(水平)",
  30. coverImage: mathImg.rightAngleHorizontal.cover,
  31. url: "/pages/formula/rightAngleHorizontal"
  32. },
  33. {
  34. title: "直角弯计算(垂直)",
  35. coverImage: mathImg.rightAngleVertical.cover,
  36. url: "/pages/formula/rightAngleVertical"
  37. },
  38. {
  39. title: "直角弯计算(2*45°)",
  40. coverImage: mathImg.rightAngle45.cover,
  41. url: "/pages/formula/rightAngle45"
  42. },
  43. {
  44. title: "直角弯计算(3*30°)",
  45. coverImage: mathImg.rightAngle30.cover,
  46. url: "/pages/formula/rightAngle30"
  47. },
  48. {
  49. title: "直角弯计算(4*22.5°)",
  50. coverImage: mathImg.rightAngle22.cover,
  51. url: "/pages/formula/rightAngle22"
  52. },
  53. {
  54. title: "坡度计算(上坡)",
  55. coverImage: mathImg.uphill.cover,
  56. url: "/pages/formula/uphill"
  57. },
  58. {
  59. title: "坡度计算(下坡)",
  60. coverImage: mathImg.downhill.cover,
  61. url: "/pages/formula/downhill"
  62. },
  63. {
  64. title: "多层直角弯计算",
  65. coverImage: mathImg.duochengzhijiao.cover,
  66. url: "/pages/formula/duochengzhijiao"
  67. },
  68. {
  69. title: "多层等差弯计算",
  70. coverImage:
  71. mathImg.duochengdengwan.cover,
  72. url: "/pages/formula/duochengdengwan"
  73. },
  74. {
  75. title: "过柱弯计算",
  76. coverImage: mathImg.guozhuwan.cover,
  77. url: "/pages/formula/guozhuwan"
  78. },
  79. {
  80. title: "抱梁弯计算",
  81. coverImage: mathImg.baoliangwan.cover,
  82. url: "/pages/formula/baoliangwan"
  83. },
  84. {
  85. title: "过墙弯计算",
  86. coverImage: mathImg.guoqiangwan.cover,
  87. url: "/pages/formula/guoqiangwan"
  88. },
  89. {
  90. title: "三通弯计算(水平)",
  91. coverImage: mathImg.santongwanHorizontal.cover,
  92. url: "/pages/formula/santongwanHorizontal"
  93. },
  94. {
  95. title: "三通弯计算(垂直)",
  96. coverImage: mathImg.santongwan.cover,
  97. url: "/pages/formula/santongwan"
  98. },
  99. {
  100. title: "变径计算(单边)",
  101. coverImage: mathImg.bianjindanbian.cover,
  102. url: "/pages/formula/bianjindanbian"
  103. },
  104. {
  105. title: "变径计算(双边)",
  106. coverImage: mathImg.bianjinshuangbian.cover,
  107. url: "/pages/formula/bianjinshuangbian"
  108. }
  109. ]