From 11d3de876d9189628870846917c22f8a18b1bd1f Mon Sep 17 00:00:00 2001 From: dujinkim Date: Tue, 29 Apr 2025 03:13:45 +0000 Subject: [no null] 벤더 상세정보 뒤로가기 추가 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/[lng]/evcp/(evcp)/vendors/[id]/info/layout.tsx | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/app/[lng]/evcp/(evcp)/vendors/[id]/info/layout.tsx b/app/[lng]/evcp/(evcp)/vendors/[id]/info/layout.tsx index 4da5af74..00c3f640 100644 --- a/app/[lng]/evcp/(evcp)/vendors/[id]/info/layout.tsx +++ b/app/[lng]/evcp/(evcp)/vendors/[id]/info/layout.tsx @@ -4,7 +4,9 @@ import { Separator } from "@/components/ui/separator" import { SidebarNav } from "@/components/layout/sidebar-nav" import { findVendorById } from "@/lib/vendors/service" // 가정: 여기에 findVendorById가 있다고 가정 import { Vendor } from "@/db/schema/vendors" - +import { Button } from "@/components/ui/button" +import { ArrowLeft } from "lucide-react" +import Link from "next/link" export const metadata: Metadata = { title: "Vendor Detail", } @@ -55,6 +57,15 @@ export default async function SettingsLayout({
+ {/* RFQ 목록으로 돌아가는 링크 추가 */} +
+ + + +
{/* 4) 협력업체 정보가 있으면 코드 + 이름 + "상세 정보" 표기 */}

-- cgit v1.2.3