feat(projects): 新增静态路由

This commit is contained in:
Soybean
2022-03-30 01:19:37 +08:00
parent bbfdcc8276
commit ca2dfa6185
34 changed files with 1591 additions and 1875 deletions

View File

@@ -27,7 +27,7 @@ export function transformToTimeCountDown(seconds: number) {
* @param start - 开始范围
* @param end - 结束范围
*/
export function getRandomInterger(end: number, start = 0) {
export function getRandomInteger(end: number, start = 0) {
const range = end - start;
const random = Math.floor(Math.random() * range + start);
return random;