summaryrefslogtreecommitdiff
path: root/lib/items-tech/table/ship
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-05-30 01:54:09 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-05-30 01:54:09 +0000
commitd59a5175210c18fcc675cde93865339abf37a406 (patch)
tree085834900e7b65c60364602432c38f3030d456e2 /lib/items-tech/table/ship
parent3bdd648ad4cb863043db181291ddaebbc025965b (diff)
(최겸) 기술영업 아이템리스트 filter, sort 적용
Diffstat (limited to 'lib/items-tech/table/ship')
-rw-r--r--lib/items-tech/table/ship/Items-ship-table.tsx29
1 files changed, 17 insertions, 12 deletions
diff --git a/lib/items-tech/table/ship/Items-ship-table.tsx b/lib/items-tech/table/ship/Items-ship-table.tsx
index 29ad8f8a..61e8d8b4 100644
--- a/lib/items-tech/table/ship/Items-ship-table.tsx
+++ b/lib/items-tech/table/ship/Items-ship-table.tsx
@@ -81,24 +81,29 @@ export function ItemsShipTable({ promises }: ItemsTableProps) {
type: "text",
},
{
- id: "itemName",
- label: "Item Name",
- type: "text",
- },
- {
- id: "description",
- label: "Description",
- type: "text",
- },
- {
id: "workType",
label: "기능(공종)",
- type: "text",
+ type: "select",
+ options: [
+ { label: "기장", value: "기장" },
+ { label: "전장", value: "전장" },
+ { label: "선실", value: "선실" },
+ { label: "배관", value: "배관" },
+ { label: "철의", value: "철의" },
+ ],
},
{
id: "shipTypes",
label: "선종",
- type: "text",
+ type: "select",
+ options: [
+ { label: "A-MAX", value: "A-MAX" },
+ { label: "S-MAX", value: "S-MAX" },
+ { label: "LNGC", value: "LNGC" },
+ { label: "VLCC", value: "VLCC" },
+ { label: "CONT", value: "CONT" },
+ { label: "OPTION", value: "OPTION" },
+ ],
},
{
id: "itemList",