This commit is contained in:
2025-06-15 15:14:37 +08:00
parent 9fdf4f3bd0
commit df7a4b63d4

View File

@@ -21,6 +21,12 @@ const columns: DataTableColumn<Tutorial>[] = [
width: 180,
render: (row) => parseTime(row.created_at!, "YYYY-MM-DD HH:mm:ss"),
},
{
title: "更新时间",
key: "updated_at",
width: 180,
render: (row) => parseTime(row.updated_at!, "YYYY-MM-DD HH:mm:ss"),
},
{
title: "顺序",
key: "order",