Compare commits

...

2 Commits

Author SHA1 Message Date
mac
a1b154abd7 v1.7.2 — 返回项目列表后 Lucide 图标刷新 2026-06-16 11:20:10 +08:00
mac
fc0ee66064 v1.7.1 — 任务抽屉改为 fixed 定位,长列表不丢失 2026-06-16 11:18:04 +08:00
2 changed files with 3 additions and 2 deletions

View File

@@ -254,6 +254,7 @@ function renderProjects() {
</div>
${renderTable(["项目", "项目说明", "当前阶段", "项目金额", "负责人", "进展"], rows, items.map((x) => ({ resource: "operations", id: x.id })))}
</div>`;
if (window.lucide) window.lucide.createIcons();
}
function renderProjectTasks(projectId) {

View File

@@ -516,10 +516,10 @@ td {
.task-body-wrap, .task-page-wrap { position: relative; overflow: hidden; }
.task-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; transition: margin-right 0.25s ease; }
.task-drawer {
position: absolute; top: 0; right: 0; width: 420px; height: 100%;
position: fixed; top: 0; right: 0; width: 420px; height: 100vh;
background: #fff; border-left: 1px solid #e2e8f0;
transform: translateX(100%); transition: transform 0.25s ease;
z-index: 10; display: flex; flex-direction: column;
z-index: 300; display: flex; flex-direction: column;
}
.task-drawer.open { transform: translateX(0); }
.task-drawer-hd {