This commit is contained in:
2024-06-20 19:12:13 +08:00
parent 12f0406a48
commit 4a6e6f4ac4
22 changed files with 509 additions and 204 deletions

View File

@@ -8,18 +8,44 @@ const TESTMANAGE = {
requiresAuth: true,
icon: "icon-desktop",
order: 1,
locale: "监控"
locale: "日志监控",
title: "日志监控"
},
children: [
{
path: "operationLog",
name: "OperationLog",
name: "operationLog",
component: () => import("@/views/monitor/operationLog/index.vue"),
meta: {
requiresAuth: true,
roles: ["*"],
locale: "操作日志",
icon: "icon-robot"
locale: "数据操作日志",
icon: "icon-file",
title: "数据操作日志"
}
},
{
path: "operations",
name: "operations",
component: () => import("@/views/monitor/operations/index.vue"),
meta: {
requiresAuth: true,
roles: ["*"],
locale: "接口操作日志",
icon: "icon-file",
title: "接口操作日志"
}
},
{
path: "loginLog",
name: "loginLog",
component: () => import("@/views/monitor/loginLog/index.vue"),
meta: {
requiresAuth: true,
roles: ["*"],
locale: "登录日志",
icon: "icon-file",
title: "登录日志"
}
}
]