feat(M01): 로직 탭 - sub_laptop_4 로직 화면(mountM01Logic) 연결
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_016WRFJmmhPi4exAzHgPZHMT
This commit is contained in:
@@ -207,6 +207,24 @@ function buildPage(groups: GroupInfo[]): HTMLElement {
|
||||
tabs.append(tab);
|
||||
}
|
||||
|
||||
const logicTab = el("button", {
|
||||
className: "m01-master__tab",
|
||||
attrs: { type: "button" },
|
||||
text: L("M01_LogicTab"),
|
||||
});
|
||||
logicTab.addEventListener("click", () => {
|
||||
tabs.querySelector(".is-active")?.classList.remove("is-active");
|
||||
logicTab.classList.add("is-active");
|
||||
group = "";
|
||||
current = null;
|
||||
dispose();
|
||||
files.replaceChildren();
|
||||
body.replaceChildren();
|
||||
title.textContent = L("M01_LogicTab");
|
||||
void import("./M01_MasterData_UI_Logic_Page").then((m) => m.mountM01Logic(body));
|
||||
});
|
||||
tabs.append(logicTab);
|
||||
|
||||
const layout = el("div", { className: "ui-workflow-layout m01-master" });
|
||||
const main = el("main", {
|
||||
className: "ui-workflow-layout__main",
|
||||
|
||||
Reference in New Issue
Block a user