提交 2b104fa0 authored 作者: junjie's avatar junjie

feat(frontend): 代码调整

上级 eae9d7ac
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<style scoped> <style scoped>
#body { #body {
width: 100%; width: 100%;
height: calc(100vh - 40px); height: calc(100vh - 56px);
/*background-color: #F5F5F5;*/ /*background-color: #F5F5F5;*/
} }
......
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
}
]
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论