From bd3df05b4bdc07cef1bd79cf23c08a757e9ee6eb Mon Sep 17 00:00:00 2001 From: joonhoekim <26rote@gmail.com> Date: Mon, 22 Sep 2025 12:17:48 +0900 Subject: (김준회) AVL 수정요구 처리 - 제목추가 - 프로젝트선택기 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/[lng]/evcp/(evcp)/avl/avl-page-client.tsx | 11 +++++++++++ app/[lng]/evcp/(evcp)/avl/page.tsx | 6 ++++-- 2 files changed, 15 insertions(+), 2 deletions(-) (limited to 'app') diff --git a/app/[lng]/evcp/(evcp)/avl/avl-page-client.tsx b/app/[lng]/evcp/(evcp)/avl/avl-page-client.tsx index a9d5713d..f8df3c49 100644 --- a/app/[lng]/evcp/(evcp)/avl/avl-page-client.tsx +++ b/app/[lng]/evcp/(evcp)/avl/avl-page-client.tsx @@ -11,6 +11,7 @@ import { AvlRegistrationArea } from "@/lib/avl/table/avl-registration-area" import { getAvlLists } from "@/lib/avl/service" import { AvlListItem } from "@/lib/avl/types" import { toast } from "sonner" +import { InformationButton } from "@/components/information/information-button" interface AvlPageClientProps { initialData: AvlListItem[] @@ -78,6 +79,16 @@ export function AvlPageClient({ initialData }: AvlPageClientProps) { return (
+ + + {/* info button and header section */} +
+

+ AVL(Approved Vendor List) 목록 +

+ +
+ {/* 상단 패널: AVL 목록 */} diff --git a/app/[lng]/evcp/(evcp)/avl/page.tsx b/app/[lng]/evcp/(evcp)/avl/page.tsx index 1c345cda..b1dbfeb0 100644 --- a/app/[lng]/evcp/(evcp)/avl/page.tsx +++ b/app/[lng]/evcp/(evcp)/avl/page.tsx @@ -3,7 +3,6 @@ import { type SearchParams } from "@/types/table" import { getValidFilters } from "@/lib/data-table" import { vendorPoSearchParamsCache } from "@/lib/po/vendor-table/validations" import { getAvlLists } from "@/lib/avl/service" -import { AvlListItem } from "@/lib/avl/types" import { AvlPageClient } from "./avl-page-client" interface AvlPageProps { @@ -45,5 +44,8 @@ export default async function AvlPage(props: AvlPageProps) { const searchParams = await props.searchParams const initialData = await getInitialAvlData(searchParams) - return + return (<> + + + ) } -- cgit v1.2.3