feat: 대시보드 메뉴 및 경영성과 대시보드 카드 페이지 추가
- 성공 사례 아래 구분선과 대시보드 메뉴 - /dashboard: AI 탐색과 동일한 카드·검색 레이아웃 - 첫 카드 경영성과 대시보드 → /dashboard/business-performance Made-with: Cursor
This commit is contained in:
14
server.js
14
server.js
@@ -1167,6 +1167,20 @@ pageRouter.get("/ai-explore/task-checklist", (req, res) =>
|
||||
opsState: normalizeOpsState(),
|
||||
})
|
||||
);
|
||||
pageRouter.get("/dashboard", (req, res) =>
|
||||
res.render("dashboard", {
|
||||
activeMenu: "dashboard",
|
||||
adminMode: res.locals.adminMode,
|
||||
opsUserEmail: !!res.locals.opsUserEmail,
|
||||
})
|
||||
);
|
||||
pageRouter.get("/dashboard/business-performance", (req, res) =>
|
||||
res.render("dashboard-business-performance", {
|
||||
activeMenu: "dashboard",
|
||||
adminMode: res.locals.adminMode,
|
||||
opsUserEmail: !!res.locals.opsUserEmail,
|
||||
})
|
||||
);
|
||||
const AI_SUCCESS_ADMIN_LIST_PAGE_SIZE = 5;
|
||||
|
||||
pageRouter.get("/ai-cases/write", (req, res) => {
|
||||
|
||||
Reference in New Issue
Block a user