gitlab_monitor/utils/timeTools.ts
zhaoyingbo 18a95387ee
All checks were successful
CI Monitor CI/CD / build-image (push) Successful in 33s
CI Monitor CI/CD / deploy (push) Successful in 37s
chore: 更新lint-staged和commitlint配置
2024-07-25 01:09:24 +00:00

23 lines
454 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import moment from "moment"
/**
* 获取今天是今年的第几周like 2024-05
*/
export const getWeekTimeWithYear = () => {
return moment().format("YYYY-WW")
}
/**
* 获取上周是今年的第几周like 2024-04
*/
export const getPrevWeekWithYear = () => {
return moment().subtract(1, "weeks").format("YYYY-WW")
}
/**
* 秒转分钟,保留一位小数
*/
export const sec2min = (sec: number) => {
return (sec / 60).toFixed(1)
}