diff --git a/src/admin/tutorial/list.vue b/src/admin/tutorial/list.vue index 2f41be1..7504aed 100644 --- a/src/admin/tutorial/list.vue +++ b/src/admin/tutorial/list.vue @@ -21,6 +21,12 @@ const columns: DataTableColumn[] = [ 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",