feat: 菜单管理

This commit is contained in:
kailong321200875
2023-08-05 17:43:24 +08:00
parent 28d0785be8
commit c72b3a33aa
16 changed files with 681 additions and 33 deletions

View File

@@ -1,11 +1,11 @@
<script setup lang="ts">
import { PropType } from 'vue'
import type { TableData } from '@/api/table/types'
import { DepartmentItem } from '@/api/department/types'
import { Descriptions, DescriptionsSchema } from '@/components/Descriptions'
defineProps({
currentRow: {
type: Object as PropType<Nullable<TableData>>,
type: Object as PropType<Nullable<DepartmentItem>>,
default: () => null
},
detailSchema: {