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