- 마스터 + 인원/장비/자재/공사량/작업사진 6테이블 마이그레이션 - 6개 탭: 작업내용, 인원, 장비, 자재, 공사량, 작업사진 - 작업내용: 금일/명일 텍스트 + 날씨/기온/강수/미세먼지 메타 - 전일누계 + 금일 + 총계 누적 패턴 (인원/장비/자재/공사량) - 작업사진: 파일 업로드 + 사진목록/사진정보 2단 레이아웃 - 상태별 버튼 제어 (작성중→저장/삭제, 검토중→읽기전용) - 양식보기: 3페이지 전체화면 뷰어 (작업일보/인원장비/자재) - 검토자 지정 모달, 캘린더 스트립, 번개 랜덤데이터
96 lines
3.1 KiB
HTML
96 lines
3.1 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;
|
|
}
|
|
.table {
|
|
width: 100%;
|
|
border: 0.5pt solid #64748b;
|
|
}
|
|
.table-header {
|
|
display: flex;
|
|
background: #f1f5f9;
|
|
border-bottom: 0.5pt solid #64748b;
|
|
}
|
|
.table-row {
|
|
display: flex;
|
|
border-bottom: 0.5pt solid #64748b;
|
|
}
|
|
.table-row:last-child {
|
|
border-bottom: none;
|
|
}
|
|
.table-cell {
|
|
padding: 8pt;
|
|
border-right: 0.5pt solid #64748b;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.table-cell:last-child {
|
|
border-right: none;
|
|
}
|
|
.table-cell p {
|
|
font-size: 8pt;
|
|
color: #1e293b;
|
|
white-space: nowrap;
|
|
}
|
|
.col-date { width: 80pt; }
|
|
.col-ver { width: 50pt; }
|
|
.col-main { width: 100pt; }
|
|
.col-detail { flex: 1; }
|
|
.col-note { width: 80pt; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="header">
|
|
<p>Document History</p>
|
|
</div>
|
|
<div class="content">
|
|
<div class="table">
|
|
<div class="table-header">
|
|
<div class="table-cell col-date"><p>날짜</p></div>
|
|
<div class="table-cell col-ver"><p>버전</p></div>
|
|
<div class="table-cell col-main"><p>주요 내용</p></div>
|
|
<div class="table-cell col-detail"><p>상세 내용</p></div>
|
|
<div class="table-cell col-note"><p>비고</p></div>
|
|
</div>
|
|
<div class="table-row">
|
|
<div class="table-cell col-date"><p>2026.02.15</p></div>
|
|
<div class="table-cell col-ver"><p>D1.0</p></div>
|
|
<div class="table-cell col-main"><p>초안 작성</p></div>
|
|
<div class="table-cell col-detail"><p>SAM 사용법 영상 자동 생성 시스템 기획서 초안 작성</p></div>
|
|
<div class="table-cell col-note"><p></p></div>
|
|
</div>
|
|
<div class="table-row">
|
|
<div class="table-cell col-date"><p></p></div>
|
|
<div class="table-cell col-ver"><p></p></div>
|
|
<div class="table-cell col-main"><p></p></div>
|
|
<div class="table-cell col-detail"><p></p></div>
|
|
<div class="table-cell col-note"><p></p></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |