From e9897d416b3e7327bbd4d4aef887eee37751ae82 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Fri, 27 Jun 2025 01:16:20 +0000 Subject: (대표님) 20250627 오전 10시 작업사항 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../table/evaluation-submissions-table-columns.tsx | 94 +++++++++++----------- 1 file changed, 45 insertions(+), 49 deletions(-) (limited to 'lib/vendor-evaluation-submit/table/evaluation-submissions-table-columns.tsx') diff --git a/lib/vendor-evaluation-submit/table/evaluation-submissions-table-columns.tsx b/lib/vendor-evaluation-submit/table/evaluation-submissions-table-columns.tsx index 869839cb..aa6255bc 100644 --- a/lib/vendor-evaluation-submit/table/evaluation-submissions-table-columns.tsx +++ b/lib/vendor-evaluation-submit/table/evaluation-submissions-table-columns.tsx @@ -140,54 +140,43 @@ export function getColumns({ setRowAction }: GetColumnsProps): ColumnDef ( - - ), - cell: ({ row }) => { - const vendor = row.original.vendor; - return ( -
-
{vendor.vendorName}
-
- {vendor.vendorCode} • {vendor.countryCode} -
-
- ); - }, - enableSorting: false, - size: 200, - }, + // { + // id: "vendorInfo", + // header: ({ column }) => ( + // + // ), + // cell: ({ row }) => { + // const vendor = row.original.vendor; + // return ( + //
+ //
{vendor.vendorName}
+ //
+ // {vendor.vendorCode} • {vendor.countryCode} + //
+ //
+ // ); + // }, + // enableSorting: false, + // size: 200, + // }, - { - accessorKey: "evaluationYear", - header: ({ column }) => ( - - ), - cell: ({ row }) => ( - - {row.getValue("evaluationYear")}년 - - ), - size: 60, - }, + - { - accessorKey: "evaluationRound", - header: ({ column }) => ( - - ), - cell: ({ row }) => { - const round = row.getValue("evaluationRound") as string; - return round ? ( - {round} - ) : ( - - - ); - }, - size: 60, - }, + // { + // accessorKey: "evaluationRound", + // header: ({ column }) => ( + // + // ), + // cell: ({ row }) => { + // const round = row.getValue("evaluationRound") as string; + // return round ? ( + // {round} + // ) : ( + // - + // ); + // }, + // size: 60, + // }, ] // ---------------------------------------------------------------- @@ -520,9 +509,16 @@ export function getColumns({ setRowAction }: GetColumnsProps): ColumnDef ( + + ), + cell: ({ row }) => ( + + {row.getValue("evaluationYear")}년 + + ), + size: 60, }, { id: "statusInfo", -- cgit v1.2.3