# add counter detail page
This commit is contained in:
parent
984adf721e
commit
87d04a0568
|
@ -6,6 +6,7 @@ export default {
|
||||||
counter: 'Counter',
|
counter: 'Counter',
|
||||||
statistic: 'Statistic',
|
statistic: 'Statistic',
|
||||||
device: 'Device',
|
device: 'Device',
|
||||||
|
detail: 'Detail',
|
||||||
logs: 'Logs',
|
logs: 'Logs',
|
||||||
guide: 'Guide',
|
guide: 'Guide',
|
||||||
permission: 'Permission',
|
permission: 'Permission',
|
||||||
|
|
|
@ -6,6 +6,7 @@ export default {
|
||||||
counter: '灭蚊器',
|
counter: '灭蚊器',
|
||||||
statistic: '统计',
|
statistic: '统计',
|
||||||
device: '设备',
|
device: '设备',
|
||||||
|
detail: '详情',
|
||||||
logs: '日志',
|
logs: '日志',
|
||||||
guide: '引导页',
|
guide: '引导页',
|
||||||
permission: '权限测试页',
|
permission: '权限测试页',
|
||||||
|
|
|
@ -63,6 +63,7 @@ export const constantRouterMap = [
|
||||||
children: [
|
children: [
|
||||||
{ path: 'index', component: () => import('@/views/counter/index'), name: 'statistic', meta: { title: 'statistic' }},
|
{ 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: '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' }}
|
{ 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