function _getday(value) {
    // 补全代码
    let day = ["星期一","星期二","星期三","星期四","星期五","星期六","星期天"]
    return day[value-1]
}