Sprint 002: - proxyInput created_by_name 누락 수정 - tbm-mobile 하단 네비에 현황 탭 추가 - proxy-input 저장 버튼 스피너 추가 Sprint 003: - GET /api/dashboard/my-summary API (연차/연장근로/페이지 통합) - 생산팀 대시보드 UI (프로필카드 + 아이콘 그리드) - dashboard-new.html 교체 (기존 .bak 백업) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
40 lines
1.6 KiB
HTML
40 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
<title>대시보드 - TK 공장관리</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
<link rel="stylesheet" href="/static/css/tkfb.css?v=2026033002">
|
|
<link rel="stylesheet" href="/css/production-dashboard.css?v=2026033001">
|
|
</head>
|
|
<body class="bg-gray-50">
|
|
<div id="app-header"></div>
|
|
<nav id="sideNav"></nav>
|
|
<div id="mobileOverlay" class="mobile-overlay hidden" onclick="toggleSideNav()"></div>
|
|
|
|
<main class="pd-main">
|
|
<section class="pd-profile-card" id="profileCard"></section>
|
|
|
|
<section class="pd-section" id="deptPagesSection">
|
|
<h2 class="pd-section-title">내 메뉴</h2>
|
|
<div class="pd-grid" id="deptPagesGrid"></div>
|
|
</section>
|
|
|
|
<section class="pd-section hidden" id="personalPagesSection">
|
|
<h2 class="pd-section-title">추가 메뉴</h2>
|
|
<div class="pd-grid" id="personalPagesGrid"></div>
|
|
</section>
|
|
|
|
<section class="pd-section hidden" id="adminPagesSection">
|
|
<h2 class="pd-section-title">관리 도구</h2>
|
|
<div class="pd-grid" id="adminPagesGrid"></div>
|
|
</section>
|
|
</main>
|
|
|
|
<script src="/static/js/tkfb-core.js?v=2026033002"></script>
|
|
<script src="/js/production-dashboard.js?v=2026033001"></script>
|
|
</body>
|
|
</html>
|