Appearance
new Date(2019,07,22).getMonth() // 返回 7 new Date('2019-07-22').getMonth() // 返回 6
new Date('2019-07-22T18:00')
需要将 ‘-’ 替换成 ‘/’
new Date('2020/06/18')