Files
sam-manage/docs/tutorial-video-html-slides/slide_03_toc.html
김보곤 03a9840fc7 feat: [pmis] 작업일보 6탭 CRUD 구현
- 마스터 + 인원/장비/자재/공사량/작업사진 6테이블 마이그레이션
- 6개 탭: 작업내용, 인원, 장비, 자재, 공사량, 작업사진
- 작업내용: 금일/명일 텍스트 + 날씨/기온/강수/미세먼지 메타
- 전일누계 + 금일 + 총계 누적 패턴 (인원/장비/자재/공사량)
- 작업사진: 파일 업로드 + 사진목록/사진정보 2단 레이아웃
- 상태별 버튼 제어 (작성중→저장/삭제, 검토중→읽기전용)
- 양식보기: 3페이지 전체화면 뷰어 (작업일보/인원장비/자재)
- 검토자 지정 모달, 캘린더 스트립, 번개 랜덤데이터
2026-03-13 08:12:31 +09:00

143 lines
3.7 KiB
HTML

<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
width: 720pt;
height: 405pt;
font-family: 'Pretendard', 'Malgun Gothic', sans-serif;
background: #ffffff;
}
p, h1, h2, h3 { margin: 0; }
.header {
background: #1e293b;
padding: 12pt 20pt;
}
.header p {
font-size: 16pt;
font-weight: 700;
color: #ffffff;
}
.content {
padding: 20pt 40pt;
}
.toc-item {
display: flex;
align-items: center;
margin-bottom: 16pt;
}
.toc-number {
width: 36pt;
height: 28pt;
background: #0d9488;
border-radius: 4pt;
display: flex;
align-items: center;
justify-content: center;
margin-right: 16pt;
}
.toc-number p {
font-size: 12pt;
font-weight: 700;
color: #ffffff;
}
.toc-title {
width: 180pt;
}
.toc-title p {
font-size: 12pt;
font-weight: 600;
color: #1e293b;
}
.toc-desc p {
font-size: 9pt;
color: #64748b;
}
</style>
</head>
<body>
<div class="header">
<p>목차 (Table of Contents)</p>
</div>
<div class="content">
<div class="toc-item">
<div class="toc-number">
<p>01</p>
</div>
<div class="toc-title">
<p>프로젝트 개요</p>
</div>
<div class="toc-desc">
<p>시스템 목적 및 핵심 아이디어</p>
</div>
</div>
<div class="toc-item">
<div class="toc-number">
<p>02</p>
</div>
<div class="toc-title">
<p>기술 가능성 분석</p>
</div>
<div class="toc-desc">
<p>보유 API 및 기술 스택 검토</p>
</div>
</div>
<div class="toc-item">
<div class="toc-number">
<p>03</p>
</div>
<div class="toc-title">
<p>생성 파이프라인</p>
</div>
<div class="toc-desc">
<p>AI 분석 → 슬라이드 → 나레이션 → 영상</p>
</div>
</div>
<div class="toc-item">
<div class="toc-number">
<p>04</p>
</div>
<div class="toc-title">
<p>화면 설계</p>
</div>
<div class="toc-desc">
<p>MNG 관리자 UI 스토리보드</p>
</div>
</div>
<div class="toc-item">
<div class="toc-number">
<p>05</p>
</div>
<div class="toc-title">
<p>시스템 아키텍처</p>
</div>
<div class="toc-desc">
<p>서비스 구조 및 Google Cloud 연동</p>
</div>
</div>
<div class="toc-item">
<div class="toc-number">
<p>06</p>
</div>
<div class="toc-title">
<p>비용 분석 &amp; 로드맵</p>
</div>
<div class="toc-desc">
<p>영상당 비용 및 4단계 구현 계획</p>
</div>
</div>
</div>
</body>
</html>