摘要: // 滞留时间 a是当前时间, b是上一个时间 const diffProcessDuration = (a, b) => { const time1 = dayjs(a); const time2 = dayjs(b); const diffInSeconds = time1.diff(time2 阅读全文
posted @ 2025-05-19 15:14 行走的蒲公英 阅读(47) 评论(0) 推荐(0)