新增后台数据库备份与回滚

This commit is contained in:
2026-06-23 12:27:16 +08:00
parent 668e0403af
commit 529e175d2c
17 changed files with 754 additions and 26 deletions

View File

@@ -1,5 +1,6 @@
import { createRouter, createWebHistory } from "vue-router";
import AdminBackups from "../views/AdminBackups.vue";
import AdminCertificates from "../views/AdminCertificates.vue";
import AdminHome from "../views/AdminHome.vue";
import AdminImports from "../views/AdminImports.vue";
@@ -26,7 +27,8 @@ export const router = createRouter({
{ path: "learners", component: AdminLearners },
{ path: "certificates", component: AdminCertificates },
{ path: "imports", component: AdminImports },
{ path: "logs", component: AdminLogs }
{ path: "logs", component: AdminLogs },
{ path: "backups", component: AdminBackups }
]
},
{ path: "/query", component: CertificateQuery },