数字星期转汉字星期
javascript
// 数字星期转汉字星期
changeToNumber(num) {
const digits = ['一', '二', '三', '四', '五', '六', '日'];
let result = '';
num.forEach((e, i) => {
result += digits[Number(e - 1)];
if (num.length != i + 1) {
result += ','
}
})
return result
},