feat():重写一键上线功能
parent
862ca2628b
commit
6a414ad2e4
|
@ -72,9 +72,21 @@ export const constantRoutes = [
|
|||
children: [
|
||||
{
|
||||
path: 'instance',
|
||||
name: '数据模拟',
|
||||
name: '车辆实例',
|
||||
component: () => import('@/views/vehicle/index'),
|
||||
meta: { title: '数据模拟', icon: 'form' }
|
||||
meta: { title: '车辆实例', icon: 'form' }
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
path: '/vehicle',
|
||||
component: Layout,
|
||||
children: [
|
||||
{
|
||||
path: 'unified',
|
||||
name: '统一调配',
|
||||
component: () => import('@/views/unified/index'),
|
||||
meta: { title: '统一调配', icon: 'eye-open' }
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
<template>
|
||||
<div class="app-container">
|
||||
统一调配
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "Unified",
|
||||
data() {
|
||||
return {}
|
||||
},
|
||||
created() {
|
||||
},
|
||||
methods: {}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
Loading…
Reference in New Issue