zhanghua
2022-10-18 5b2dd794ec680d47e907ff43a264a7f82c30a130
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();