27 lines
1.1 KiB
TypeScript
27 lines
1.1 KiB
TypeScript
/* =============================================================================
|
|
* B10_Payment_UI_Page.ts
|
|
* 로그인 후 10: 결재 페이지 (견적 확인 + 결재 진행)
|
|
*
|
|
* ⚠️ 본문(견적 요약/결재 수단) 준비 중 — 헤더/안내만 구성. 추후 구체화.
|
|
* 제약 준수 (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 renderB10Payment(root: HTMLElement): void {
|
|
renderPendingContent(root, {
|
|
pageClass: "b10-payment",
|
|
title: L("B10_Payment_Title"),
|
|
subtitle: L("B10_Payment_Subtitle"),
|
|
});
|
|
}
|