| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 | import mathImg from "./math-imgs"module.exports = [    {        title: "万能计算",        coverImage: mathImg.normal.cover,        url: "/pages/formula/normal"    },    {        title: "切口计算",        coverImage: mathImg.slice.cover,        url: "/pages/formula/slice"    },    {        title: "角度计算",        coverImage: mathImg.angle.cover,        url: "/pages/formula/angle"    },    {        title: "任意三角形计算",        coverImage: mathImg.anytriangle.cover,        url: "/pages/formula/anytriangle"    },    {        title: "任意角度弯计算",        coverImage: mathImg.anyangle.cover,        url: "/pages/formula/anyangle"    },    {        title: "直角弯计算(水平)",        coverImage: mathImg.rightAngleHorizontal.cover,        url: "/pages/formula/rightAngleHorizontal"    },    {        title: "直角弯计算(垂直)",        coverImage: mathImg.rightAngleVertical.cover,        url: "/pages/formula/rightAngleVertical"    },    {        title: "直角弯计算(2*45°)",        coverImage: mathImg.rightAngle45.cover,        url: "/pages/formula/rightAngle45"    },    {        title: "直角弯计算(3*30°)",        coverImage: mathImg.rightAngle30.cover,        url: "/pages/formula/rightAngle30"    },    {        title: "直角弯计算(4*22.5°)",        coverImage: mathImg.rightAngle22.cover,        url: "/pages/formula/rightAngle22"    },    {        title: "坡度计算(上坡)",        coverImage: mathImg.uphill.cover,        url: "/pages/formula/uphill"    },    {        title: "坡度计算(下坡)",        coverImage: mathImg.downhill.cover,        url: "/pages/formula/downhill"    },    {        title: "多层直角弯计算",        coverImage: mathImg.duochengzhijiao.cover,        url: "/pages/formula/duochengzhijiao"    },    {        title: "多层等差弯计算",        coverImage:        mathImg.duochengdengwan.cover,        url: "/pages/formula/duochengdengwan"    },    {        title: "过柱弯计算",        coverImage: mathImg.guozhuwan.cover,        url: "/pages/formula/guozhuwan"    },    {        title: "抱梁弯计算",        coverImage: mathImg.baoliangwan.cover,        url: "/pages/formula/baoliangwan"    },    {        title: "过墙弯计算",        coverImage: mathImg.guoqiangwan.cover,        url: "/pages/formula/guoqiangwan"    },    {        title: "三通弯计算(水平)",        coverImage: mathImg.santongwanHorizontal.cover,        url: "/pages/formula/santongwanHorizontal"    },    {        title: "三通弯计算(垂直)",        coverImage: mathImg.santongwan.cover,        url: "/pages/formula/santongwan"    },    {        title: "变径计算(单边)",        coverImage: mathImg.bianjindanbian.cover,        url: "/pages/formula/bianjindanbian"    },    {        title: "变径计算(双边)",        coverImage: mathImg.bianjinshuangbian.cover,        url: "/pages/formula/bianjinshuangbian"    }]
 |