zhanghua
2023-11-16 7602245091293b60038b4cbcab7fce5887b403a2
src/utils/mydate.js
@@ -1,7 +1,8 @@
// 处理时间
function filterTime(time){
    const result = new Date(time);
    let yy = result.getFullYear(),
    mm = result.getMonth(),
    mm = result.getMonth()+1,
    dd = result.getDate(),
    hh = result.getHours(),
    mi = result.getMinutes();