21 lines
507 B
Vue
21 lines
507 B
Vue
<script setup lang="ts">
|
|
import { PropType } from 'vue'
|
|
import { DepartmentUserItem } from '@/api/department/types'
|
|
import { Descriptions, DescriptionsSchema } from '@/components/Descriptions'
|
|
|
|
defineProps({
|
|
currentRow: {
|
|
type: Object as PropType<DepartmentUserItem>,
|
|
default: () => undefined
|
|
},
|
|
detailSchema: {
|
|
type: Array as PropType<DescriptionsSchema[]>,
|
|
default: () => []
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<Descriptions :schema="detailSchema" :data="currentRow || {}" />
|
|
</template>
|