feat():重写一键上线功能

master
DongZeLiang 2024-06-11 19:25:05 +08:00
parent 862ca2628b
commit 6a414ad2e4
2 changed files with 35 additions and 2 deletions

View File

@ -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' }
}
]
},

View File

@ -0,0 +1,21 @@
<template>
<div class="app-container">
统一调配
</div>
</template>
<script>
export default {
name: "Unified",
data() {
return {}
},
created() {
},
methods: {}
}
</script>
<style scoped>
</style>