fangyuan
2022-11-29 540af127d6874345ae0aaffc85287dfb6287904b
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();