This commit is contained in:
2026-07-05 18:10:16 +09:00
parent 0057983671
commit 23d907265a
22 changed files with 2207 additions and 315 deletions
+26
View File
@@ -0,0 +1,26 @@
/* =============================================================================
* B11_Status_UI_Page.ts
* 로그인 후 11: 상태 출력 페이지 (결재완료/문서생성/다운로드)
*
* ⚠️ 본문(진행 상태/결과물 다운로드) 준비 중 — 헤더/안내만 구성. 추후 구체화.
* 제약 준수 (frontend.md): 문구는 locale 참조(§3), 공통 스캐폴드 사용(§2).
* ========================================================================== */
import { ui_locales, currentLanguageIndex } from "@ui/ui_template_locale";
import { renderPendingContent } from "../A00_Common/b_page_scaffold";
/** locale 헬퍼 */
function L(key: keyof typeof ui_locales): string {
return ui_locales[key][currentLanguageIndex];
}
/* -----------------------------------------------------------------------------
* 페이지 진입점
* -------------------------------------------------------------------------- */
export function renderB11Status(root: HTMLElement): void {
renderPendingContent(root, {
pageClass: "b11-status",
title: L("B11_Status_Title"),
subtitle: L("B11_Status_Subtitle"),
});
}