| | |
| | | return '-' |
| | | } |
| | | let date = new Date(dat) |
| | | console.log(date, dat, type); |
| | | const year = date.getFullYear(); |
| | | const month = (date.getMonth() + 1).toString().padStart(2, '0'); |
| | | const day = date.getDate().toString().padStart(2, '0'); |
| | | const hours = date.getHours().toString().padStart(2, '0'); |
| | | const minutes = date.getMinutes().toString().padStart(2, '0'); |
| | | if (type) { |
| | | return `${year}-${month}-${day} ${hours}:${minutes}`; |
| | | return `${year}/${month}/${day} ${hours}:${minutes}`; |
| | | } |
| | | return `${year}-${month}-${day}`; |
| | | return `${year}/${month}/${day}`; |
| | | }, |
| | | /** |
| | | * 倒计时 |