feat:将词典的words字段设置为不响应式,因为太卡了

This commit is contained in:
zyronon
2025-08-02 23:21:01 +08:00
parent 56a9d84ddc
commit ef4883ea37
6 changed files with 38 additions and 32 deletions

View File

@@ -369,6 +369,7 @@ export function _getAccomplishDays(total: number, dayNumber: number) {
//获取完成日期
export function _getAccomplishDate(total: number, dayNumber: number) {
if (dayNumber <= 0) return '-'
let d = _getAccomplishDays(total, dayNumber)
return dayjs().add(d, 'day').format('YYYY-MM-DD')
}