diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-09-23 02:44:05 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-09-23 02:44:05 +0000 |
| commit | da00bbf203534b2663289d6fe45b6ed8663e7e11 (patch) | |
| tree | 859f0444b679807b1cc1b223aac4989958641d01 /app | |
| parent | c8e93fad9b1f3b1e4d99b23fc3d99dd5f463742a (diff) | |
(최겸) 구매 인포메이션, 공지사항 수정
Diffstat (limited to 'app')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/information/page.tsx | 4 | ||||
| -rw-r--r-- | app/[lng]/evcp/(evcp)/rfq-last/page.tsx | 2 | ||||
| -rw-r--r-- | app/[lng]/partners/(partners)/bid/page.tsx | 7 | ||||
| -rw-r--r-- | app/[lng]/partners/(partners)/rfq-last/page.tsx | 2 |
4 files changed, 9 insertions, 6 deletions
diff --git a/app/[lng]/evcp/(evcp)/information/page.tsx b/app/[lng]/evcp/(evcp)/information/page.tsx index c87471ae..8a6d348b 100644 --- a/app/[lng]/evcp/(evcp)/information/page.tsx +++ b/app/[lng]/evcp/(evcp)/information/page.tsx @@ -9,7 +9,7 @@ import { InformationButton } from "@/components/information/information-button" import { useTranslation } from "@/i18n" export const metadata: Metadata = { - title: "인포메이션 관리", + title: "안내사항 관리", description: "페이지별 도움말 및 첨부파일을 관리합니다.", } @@ -39,7 +39,7 @@ export default async function InformationPage({ params }: InformationPageProps) <div> <div className="flex items-center gap-2"> <h2 className="text-2xl font-bold tracking-tight"> - 인포메이션 관리 + 안내사항 관리 </h2> <InformationButton pagePath="/evcp/information" /> </div> diff --git a/app/[lng]/evcp/(evcp)/rfq-last/page.tsx b/app/[lng]/evcp/(evcp)/rfq-last/page.tsx index 0297c4f9..af5a8d95 100644 --- a/app/[lng]/evcp/(evcp)/rfq-last/page.tsx +++ b/app/[lng]/evcp/(evcp)/rfq-last/page.tsx @@ -84,7 +84,7 @@ export default async function RfqPage(props: RfqPageProps) { <h2 className="text-2xl font-bold tracking-tight"> 견적목록관리 </h2> - <InformationButton pagePath="rfq" /> + <InformationButton pagePath="evcp/rfq-last" /> </div> </div> diff --git a/app/[lng]/partners/(partners)/bid/page.tsx b/app/[lng]/partners/(partners)/bid/page.tsx index a09dec72..05081c3a 100644 --- a/app/[lng]/partners/(partners)/bid/page.tsx +++ b/app/[lng]/partners/(partners)/bid/page.tsx @@ -5,7 +5,7 @@ import { authOptions } from "@/app/api/auth/[...nextauth]/route" import { getBiddingListForPartners } from '@/lib/bidding/detail/service' import { Shell } from '@/components/shell' import { DataTableSkeleton } from '@/components/data-table/data-table-skeleton' - +import { InformationButton } from '@/components/information/information-button' export default async function PartnersBidPage() { // 세션에서 companyId 가져오기 const session = await getServerSession(authOptions) @@ -31,7 +31,10 @@ export default async function PartnersBidPage() { <div className="container mx-auto py-6 space-y-6"> <div className="flex items-center justify-between"> <div> - <h1 className="text-3xl font-bold">입찰 참여</h1> + <div className="flex items-center gap-2"> + <h1 className="text-3xl font-bold">입찰 참여</h1> + <InformationButton pagePath="partners/bid" /> + </div> <p className="text-muted-foreground mt-2"> 참여 가능한 입찰 목록을 확인하고 응찰하실 수 있습니다. </p> diff --git a/app/[lng]/partners/(partners)/rfq-last/page.tsx b/app/[lng]/partners/(partners)/rfq-last/page.tsx index cddb45dd..a49ed648 100644 --- a/app/[lng]/partners/(partners)/rfq-last/page.tsx +++ b/app/[lng]/partners/(partners)/rfq-last/page.tsx @@ -43,7 +43,7 @@ export default async function IndexPage(props: IndexPageProps) { <h2 className="text-2xl font-bold tracking-tight"> 견적 목록 </h2> - <InformationButton pagePath="partners/rfq-ship" /> + <InformationButton pagePath="partners/rfq-last" /> </div> {/* <p className="text-muted-foreground"> 진행 중인 견적서 목록을 확인하고 관리합니다. |
