export function getDayTime(nowTime) { const nowTimeDate = new Date(nowTime) nowTimeDate.setHours(0, 0, 0, 0) return new Date(nowTimeDate) }