This commit is contained in:
shijing 2023-08-15 14:13:03 +08:00
commit fafe94dc91
2 changed files with 28 additions and 0 deletions

View File

@ -70,6 +70,17 @@ const routes = [
},
"component": "bigScreen"
},
{
"path": "/bigScreen2",
"name": "bigScreen2",
"meta": {
"title": "驾驶舱2",
"icon": "el-icon-position",
"perms": ["bigScreen"],
"fullpage": true,
},
"component": "bigScreen/index_enm"
},
{
"path": "/track",
"name": "track",

View File

@ -0,0 +1,17 @@
<template>
<div class="dashboard">
</div>
</template>
<script>
</script>
<style scoped>
.dashboard {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
}
</style>