diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-04-29 08:41:44 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-04-29 08:41:44 +0000 |
| commit | 0174e04cf0fd7b41292b3ee4961c4f952c267b4f (patch) | |
| tree | 14a556c0346551db24d417d71b0083186162dc20 /lib | |
| parent | 11d3de876d9189628870846917c22f8a18b1bd1f (diff) | |
수정: 벤더리스트 페이지의 벤더 상태 컬럼을 5번째로 변경
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/vendors/table/vendors-table.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/vendors/table/vendors-table.tsx b/lib/vendors/table/vendors-table.tsx index 02768f32..34b9b3e7 100644 --- a/lib/vendors/table/vendors-table.tsx +++ b/lib/vendors/table/vendors-table.tsx @@ -88,11 +88,6 @@ export function VendorsTable({ promises }: VendorsTableProps) { { id: "vendorCode", label: "업체코드", type: "text" }, { id: "email", label: "이메일", type: "text" }, { id: "country", label: "국가", type: "text" }, - { id: "vendorTypeName", label: "업체 유형", type: "text" }, - { id: "vendorCategory", label: "업체 분류", type: "select", options: [ - { label: "정규업체", value: "정규업체" }, - { label: "잠재업체", value: "잠재업체" }, - ]}, { id: "status", label: "업체승인상태", @@ -104,6 +99,11 @@ export function VendorsTable({ promises }: VendorsTableProps) { icon: getVendorStatusIcon(status), })), }, + { id: "vendorTypeName", label: "업체 유형", type: "text" }, + { id: "vendorCategory", label: "업체 분류", type: "select", options: [ + { label: "정규업체", value: "정규업체" }, + { label: "잠재업체", value: "잠재업체" }, + ]}, { id: "createdAt", label: "등록일", type: "date" }, { id: "updatedAt", label: "수정일", type: "date" }, ] |
