# add counter detail page
This commit is contained in:
parent
984adf721e
commit
87d04a0568
|
@ -6,6 +6,7 @@ export default {
|
|||
counter: 'Counter',
|
||||
statistic: 'Statistic',
|
||||
device: 'Device',
|
||||
detail: 'Detail',
|
||||
logs: 'Logs',
|
||||
guide: 'Guide',
|
||||
permission: 'Permission',
|
||||
|
|
|
@ -6,6 +6,7 @@ export default {
|
|||
counter: '灭蚊器',
|
||||
statistic: '统计',
|
||||
device: '设备',
|
||||
detail: '详情',
|
||||
logs: '日志',
|
||||
guide: '引导页',
|
||||
permission: '权限测试页',
|
||||
|
|
|
@ -63,6 +63,7 @@ export const constantRouterMap = [
|
|||
children: [
|
||||
{ path: 'index', component: () => import('@/views/counter/index'), name: 'statistic', meta: { title: 'statistic' }},
|
||||
{ path: 'device', component: () => import('@/views/counter/device'), name: 'device', meta: { title: 'device' }},
|
||||
{ path: 'detail', component: () => import('@/views/counter/detail'), name: 'detail', meta: { title: 'detail' }},
|
||||
{ path: 'logs', component: () => import('@/views/counter/logs'), name: 'logs', meta: { title: 'logs' }}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -0,0 +1,17 @@
|
|||
<template>
|
||||
<div class="app-container">
|
||||
<p class="warn-content">
|
||||
设备日志详情。
|
||||
</p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'detail'
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
|
||||
</style>
|
Loading…
Reference in New Issue