/** 毫秒转天数 */ export function msToDay(ms: number) { return Math.round(ms / (24 * 60 * 60 * 1000)) }