统计页面

master
DongZeLiang 2024-04-13 00:13:54 +08:00
parent e7f7b58450
commit c72761ac58
3 changed files with 52 additions and 0 deletions

View File

@ -45,6 +45,16 @@ export const constantRoutes = [
component: () => import('@/views/login'), component: () => import('@/views/login'),
hidden: true hidden: true
}, },
{
path: '/overview',
component: () => import('@/views/statistics/overview'),
hidden: true
},
{
path: '/client/detail',
component: () => import('@/views/statistics/client-detail'),
hidden: true
},
{ {
path: '/404', path: '/404',
component: () => import('@/views/error/404'), component: () => import('@/views/error/404'),

View File

@ -0,0 +1,21 @@
<template>
<div>
FluxMq客户端详情
</div>
</template>
<script>
export default {
name: "ClientDetail",
data() {
return {}
},
created() {
},
methods: {}
}
</script>
<style scoped>
</style>

View File

@ -0,0 +1,21 @@
<template>
<div>
概述
</div>
</template>
<script>
export default {
name: "overview",
data() {
return {}
},
created() {
},
methods: {}
}
</script>
<style scoped>
</style>