Files
Aislo/B09_wf6_Estimation/B09_wf6_Estimation_UI_Page.ts
2026-07-10 19:52:06 +09:00

27 lines
1.1 KiB
TypeScript

/* =============================================================================
* B09_wf6_Estimation_UI_Page.ts
* 로그인 후 09: 6차 워크플로우 (견적·문서)
*
* ⚠️ 본문 준비 중 — 워크플로우 셸(헤더+스텝바)만 구성. 추후 구체화.
* 제약 준수 (frontend.md §2 3단 레이아웃): createWorkflowShell 재사용.
* ========================================================================== */
import { ui_locales, currentLanguageIndex } from "@ui/ui_template_locale";
import { renderPendingWorkflow, workflowSteps } from "../A00_Common/b_page_scaffold";
/** locale 헬퍼 */
function L(key: keyof typeof ui_locales): string {
return ui_locales[key][currentLanguageIndex];
}
/* -----------------------------------------------------------------------------
* 페이지 진입점
* -------------------------------------------------------------------------- */
export function renderB09Estimation(root: HTMLElement): void {
renderPendingWorkflow(root, {
title: L("B09_Estimation_Title"),
steps: workflowSteps(),
activeStep: 6,
});
}