数据管理组件(无内容)

This commit is contained in:
wzy-warehouse
2026-04-21 19:58:10 +08:00
parent 947787f717
commit b326bae11e
5 changed files with 44 additions and 0 deletions
@@ -0,0 +1,5 @@
<template>
<div></div>
</template>
<script lang="ts" setup></script>
<style scoped></style>
@@ -0,0 +1,7 @@
<template>
<div></div>
</template>
<script lang="ts" setup></script>
<style scoped></style>
@@ -0,0 +1,7 @@
<template>
<div></div>
</template>
<script lang="ts" setup></script>
<style scoped></style>
+6
View File
@@ -19,6 +19,12 @@ const router = createRouter({
name: 'earthquake', name: 'earthquake',
component: () => import('@/views/home/earthquake/EarthquakeView.vue'), component: () => import('@/views/home/earthquake/EarthquakeView.vue'),
}, },
{
path: 'file-management',
name: 'fileManagement',
component: () =>
import('@/views/home/file-management/FileManagementView.vue'),
},
], ],
}, },
], ],
@@ -0,0 +1,19 @@
<!-- 文件管理组件 -->
<template>
<!-- 搜搜组件 -->
<SearchComponent />
<!-- 表信息组件 -->
<TableInformationComponent />
<!-- 表格详情组件 -->
<TableDetailComponent />
</template>
<script lang="ts" setup>
import SearchComponent from '@/component/file-management/SearchComponent.vue';
import TableDetailComponent from '@/component/file-management/TableDetailComponent.vue';
import TableInformationComponent from '@/component/file-management/TableInformationComponent.vue';
</script>
<style scoped></style>