diff --git a/frontend/src/pages/DataAnnotation/Template/TemplateList.tsx b/frontend/src/pages/DataAnnotation/Template/TemplateList.tsx index 242085c..8f128e1 100644 --- a/frontend/src/pages/DataAnnotation/Template/TemplateList.tsx +++ b/frontend/src/pages/DataAnnotation/Template/TemplateList.tsx @@ -225,6 +225,23 @@ const TemplateList: React.FC = () => { {ClassificationMap[category as keyof typeof ClassificationMap]?.label || category} ), }, + { + title: "类型", + dataIndex: "builtIn", + key: "builtIn", + width: 100, + render: (builtIn: boolean) => ( + + {builtIn ? "系统内置" : "自定义"} + + ), + }, + { + title: "版本", + dataIndex: "version", + key: "version", + width: 80, + }, { title: "创建时间", dataIndex: "createdAt", @@ -232,6 +249,46 @@ const TemplateList: React.FC = () => { width: 180, render: (date: string) => new Date(date).toLocaleString(), }, + { + title: "操作", + key: "action", + width: 200, + fixed: "right", + render: (_, record) => ( + + +