From 52d1f0ef27a4458fae0adc78df5e66ccbd075cc6 Mon Sep 17 00:00:00 2001 From: dengqichen Date: Fri, 28 Nov 2025 16:42:53 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=8D=E6=9E=84=E6=B6=88=E6=81=AF=E9=80=9A?= =?UTF-8?q?=E7=9F=A5=E5=BC=B9=E7=AA=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/pages/Deploy/ScheduleJob/List/index.tsx | 1 + frontend/src/pages/Deploy/Team/List/index.tsx | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/frontend/src/pages/Deploy/ScheduleJob/List/index.tsx b/frontend/src/pages/Deploy/ScheduleJob/List/index.tsx index f8be6f91..e2f4a2d3 100644 --- a/frontend/src/pages/Deploy/ScheduleJob/List/index.tsx +++ b/frontend/src/pages/Deploy/ScheduleJob/List/index.tsx @@ -127,6 +127,7 @@ const ScheduleJobList: React.FC = () => { // 列定义 const columns: ColumnDef[] = useMemo(() => [ + { key: 'id', title: 'ID', dataIndex: 'id', width: '80px' }, { key: 'jobName', title: '任务名称', width: '180px', dataIndex: 'jobName', className: 'font-medium whitespace-nowrap' }, { key: 'category', title: '任务分类', width: '120px', className: 'whitespace-nowrap', render: (_, record) => record.category?.name || '-' }, { key: 'cronExpression', title: 'Cron表达式', width: '150px', className: 'whitespace-nowrap', render: (_, record) => {record.cronExpression} }, diff --git a/frontend/src/pages/Deploy/Team/List/index.tsx b/frontend/src/pages/Deploy/Team/List/index.tsx index b21c0800..491aa877 100644 --- a/frontend/src/pages/Deploy/Team/List/index.tsx +++ b/frontend/src/pages/Deploy/Team/List/index.tsx @@ -201,6 +201,11 @@ const TeamList: React.FC = () => { }; const columns: Column[] = [ + { + accessorKey: 'id', + header: 'ID', + size: 80, + }, { accessorKey: 'teamCode', header: '团队编码',