拆分菜单 通过url区分访问
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
lnljyang
2026-05-14 17:33:01 +08:00
parent 0dc45504f2
commit fdef0a940a
8 changed files with 271 additions and 144 deletions

View File

@@ -0,0 +1,11 @@
import ETCView from './ETCView';
export default function EtcModule() {
return (
<div className="min-h-screen bg-[#F8F9FB] text-gray-800 font-sans p-3 md:p-6 relative" style={{ overflowX: 'clip' }}>
<div className="max-w-6xl mx-auto flex flex-col gap-3 pb-16 max-md:landscape:pb-0 max-md:landscape:h-full max-md:landscape:flex-1 max-md:landscape:overflow-hidden">
<ETCView />
</div>
</div>
);
}