diff --git "a/\346\241\214\351\235\242\345\220\257\345\212\250.js" "b/\346\241\214\351\235\242\345\220\257\345\212\250.js" index 7033da3d78a6dc4ef2f24af1f9e2d9424c7ed877..d522aac4d5698772a1ed222810d26e0fc8e7c10a 100644 --- "a/\346\241\214\351\235\242\345\220\257\345\212\250.js" +++ "b/\346\241\214\351\235\242\345\220\257\345\212\250.js" @@ -516,13 +516,13 @@ class Widget extends BaseWidget { let currDayFullYear = currItem.date_cn.replace('年', '-').replace('月', '-').replace('日', ''); let notWorkdayFullYear = notWorkday.date_cn.replace('年', '-').replace('月', '-').replace('日', ''); let remainDay = (new Date(notWorkdayFullYear) - new Date(currDayFullYear)) / 86400 / 1000; - let holidayTips = notWorkday.holiday_cn == '非节假日' ? notWorkday.weekend_cn : notWorkday.holiday_cn + '假期'; + let holidayTips = notWorkday.holiday_cn == '非节假日' ? notWorkday.weekend_cn : notWorkday.holiday_cn; if (remainDay == 1) { return '明天' + holidayTips + '啦~ o(* ̄3 ̄)o'; } return `还有${remainDay}天到${holidayTips}ヽ(;´Д`)ノ`; } - return '接口数据飞到外太空了ヽ(;´Д`)ノ'; + return '数据飞到外太空了ヽ(;´Д`)ノ'; } /**