feat: 完成界面基础搭建

This commit is contained in:
陈淳
2023-09-26 09:21:27 +08:00
parent 4e5bdf6847
commit c2a9c670c4
4 changed files with 376 additions and 13 deletions

View File

@@ -1,10 +1,19 @@
<template>
<div>
<TableList></TableList>
<FieldList></FieldList>
</div>
<el-row>
<el-col :span="4"> <TableList></TableList></el-col>
<el-col :span="20"> <FieldList class="fileList"></FieldList></el-col>
</el-row>
</template>
<script setup>
import FieldList from './components/FieldList.vue'
import TableList from './components/tableList.vue'
</script>
import TableList from './components/TableList.vue'
</script>
<style scoped>
.fileList{
}
.tableList{
}
</style>