feat: 알림 시스템 및 시설설비 관리 기능 구현

- 알림 시스템 구축 (navbar 알림 아이콘, 드롭다운)
- 알림 수신자 설정 기능 (계정관리 페이지)
- 시설설비 관리 페이지 추가 (수리 워크플로우)
- 수리 신청 → 접수 → 처리중 → 완료 상태 관리
- 사이드바 메뉴 구조 개선 (공장 관리 카테고리)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Hyungi Ahn
2026-02-04 15:56:57 +09:00
parent d1aec517a6
commit b8ccde7f17
24 changed files with 3204 additions and 9 deletions

View File

@@ -419,10 +419,14 @@
<div class="mini-modal-body">
<div class="form-group">
<label>수리 유형</label>
<select id="panelRepairItem" class="form-control">
<select id="panelRepairItem" class="form-control" onchange="onRepairTypeChange()">
<option value="">선택하세요</option>
</select>
</div>
<div class="form-group" id="newRepairTypeGroup" style="display:none;">
<label>새 유형 이름</label>
<input type="text" id="newRepairTypeName" class="form-control" placeholder="새로운 수리 유형 입력">
</div>
<div class="form-group">
<label>상세 내용</label>
<textarea id="panelRepairDesc" class="form-control" rows="3" placeholder="수리 필요 내용"></textarea>