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