cabinetDetailImpl.js 973 B

123456789101112131415161718192021222324252627282930313233
  1. function isWithinTimeRange(startTime, endTime) {
  2. // 获取当前时间
  3. const now = new Date();
  4. const currentMinutes = now.getHours() * 60 + now.getMinutes();
  5. // 将传入的时间转换为分钟
  6. const [startHour, startMinute] = startTime.split(':').map(Number);
  7. const [endHour, endMinute] = endTime.split(':').map(Number);
  8. const startMinutes = startHour * 60 + startMinute;
  9. const endMinutes = endHour * 60 + endMinute;
  10. // 判断当前时间是否在指定范围内
  11. return currentMinutes >= startMinutes && currentMinutes <= endMinutes;
  12. }
  13. function getBoxReservation(boxList, reservationList) {
  14. var reservationSet = new Set(reservationList.map(item => item.box_sn));
  15. boxList = boxList.map(item => {
  16. var isReservation = reservationSet.has(item.box_sn);
  17. return {
  18. ...item,
  19. isReservation
  20. };
  21. });
  22. console.log("仓体boxList",boxList)
  23. return boxList
  24. }
  25. module.exports = {
  26. isWithinTimeRange: isWithinTimeRange,
  27. getBoxReservation: getBoxReservation
  28. };