From ae2831d1ae4661f5e32606d23ae237cf7a817ad9 Mon Sep 17 00:00:00 2001 From: kimbokon Date: Thu, 1 Jan 2026 20:45:48 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9E=90=EB=8F=99=EB=B0=A9=ED=99=94=EC=85=94?= =?UTF-8?q?=ED=84=B0=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- etc/shutter.php | 434 +++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 428 insertions(+), 6 deletions(-) diff --git a/etc/shutter.php b/etc/shutter.php index 653641d..5289eaf 100644 --- a/etc/shutter.php +++ b/etc/shutter.php @@ -92,7 +92,7 @@ - + @@ -108,7 +108,7 @@ - + @@ -453,12 +453,29 @@
4
-

품질인정 절차

-

Recognition Process

+

품질인정 절차 및 심사

+

Recognition Process & Audit

-
+ +
+ + + + +
+ + +
🏛️ @@ -523,6 +540,392 @@

+ + + + + + + + + @@ -775,6 +1178,25 @@ document.getElementById('mobile-menu').classList.add('hidden'); } + // Process Tab Switch + function showProcessTab(type) { + const tabs = ['flow', 'audit', 'docs', 'post']; + tabs.forEach(t => { + const tabBtn = document.getElementById(`proc-tab-${t}`); + const content = document.getElementById(`proc-content-${t}`); + + if (t === type) { + tabBtn.classList.add('tab-active'); + tabBtn.classList.remove('bg-slate-700', 'text-slate-300'); + content.classList.remove('hidden'); + } else { + tabBtn.classList.remove('tab-active'); + tabBtn.classList.add('bg-slate-700', 'text-slate-300'); + content.classList.add('hidden'); + } + }); + } + // Shutter Type Tabs function showShutterType(type) { const types = ['steel', 'screen', 'compare']; @@ -987,4 +1409,4 @@ }); - \ No newline at end of file +