diff --git a/frontend/src/pages/DataAnnotation/Template/TemplateList.tsx b/frontend/src/pages/DataAnnotation/Template/TemplateList.tsx
index 8f128e1..242085c 100644
--- a/frontend/src/pages/DataAnnotation/Template/TemplateList.tsx
+++ b/frontend/src/pages/DataAnnotation/Template/TemplateList.tsx
@@ -225,23 +225,6 @@ 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",
@@ -249,46 +232,6 @@ const TemplateList: React.FC = () => {
width: 180,
render: (date: string) => new Date(date).toLocaleString(),
},
- {
- title: "操作",
- key: "action",
- width: 200,
- fixed: "right",
- render: (_, record) => (
-
-
- }
- onClick={() => handleView(record)}
- />
-
- <>
-
- }
- onClick={() => handleEdit(record)}
- />
-
- handleDelete(record.id)}
- okText="确定"
- cancelText="取消"
- >
-
- }
- />
-
-
- >
-
- ),
- },
];
return (