feat(frontend): 代码调整

This commit is contained in:
junjie 2021-03-04 10:26:04 +08:00
parent eae9d7ac8b
commit 2b104fa0f6
2 changed files with 1 additions and 31 deletions

View File

@ -14,7 +14,7 @@
<style scoped>
#body {
width: 100%;
height: calc(100vh - 40px);
height: calc(100vh - 56px);
/*background-color: #F5F5F5;*/
}

View File

@ -1,30 +0,0 @@
const DataSet = () => import('./index')
const DataSetHome = () => import('./data/DataHome')
const DataSetTable = () => import('./data/ViewTable')
const DataSetAddDB = () => import('./add/AddDB')
export default {
path: '/dataset',
name: 'dataset',
redirect: '/dataset/home',
components: {
content: DataSet
},
children: [
{
path: 'home',
name: 'home',
component: DataSetHome
},
{
path: 'add_db',
name: 'add_db',
component: DataSetAddDB
},
{
path: 'table',
name: 'table',
component: DataSetTable
}
]
}