马宇豪
2023-10-13 2229240bd329ede0f08a2f9e8b3d9ce917caf7bf
src/utils/filter.js
@@ -32,11 +32,10 @@
  const month = String(date.getMonth() + 1).padStart(2, "0");
  const day = String(date.getDate()).padStart(2, "0");
  const hours = String(date.getHours()).padStart(2, "0");
  const minutes = String(date.getMinutes()).padStart(2, "0");
  const seconds = String(date.getSeconds()).padStart(2, "0");
  const minutes = String(date.getMinutes()).padStart(2, "0")
  // 构建所需格式的字符串
  const formattedDate = `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
  const formattedDate = `${year}-${month}-${day} ${hours}:${minutes}`;
  return formattedDate;
})