恢复周视图的多个dom节点渲染

This commit is contained in:
qiuchengw
2025-11-12 21:16:20 +08:00
parent 7b8c611597
commit e86e5dde1f
2 changed files with 5 additions and 3 deletions
+2
View File
@@ -35,3 +35,5 @@ dist-ssr
Thumbs.db
ehthumbs.db
Desktop.ini
yarn.lock
+3 -3
View File
@@ -3428,7 +3428,7 @@ const handleAddSuccessor = (task: Task) => {
:style="{ height: `${contentHeight}px`, width: '60px' }"
>
<!-- 周内的7个子列 -->
<!-- <div
<div
v-for="(subDay, dayIndex) in week.subDays || []"
:key="`subday-col-${dayIndex}`"
class="sub-day-column"
@@ -3436,8 +3436,8 @@ const handleAddSuccessor = (task: Task) => {
weekend: subDay.dayOfWeek === 0 || subDay.dayOfWeek === 6,
today: isToday(subDay.date),
}"
:style="{ height: `${contentHeight}px`, width: '8.57px' }"
></div> -->
:style="{ height: `${contentHeight}px`, width: `${dayWidth}px` }"
></div>
</div>
</div>