function _date(number) {
    // 补全代码
    var res = new Date(number)
    return `${res.getFullYear()}-${res.getMonth() + 1}-${res.getDate()}`
}