+ {record.last_run_at ? (
+ <>
+
{new Date(record.last_run_at).toLocaleString()}
+
+ {record.last_run_status === 'success' ? '成功' : '失败'}
+
+ >
+ ) : (
+
从未执行
+ )}
+
+ ),
+ },
+ {
+ title: '操作',
+ key: 'action',
+ width: 150,
+ render: (_, record) => (
+