You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
742 B
25 lines
742 B
<script lang="ts" setup> |
|
import { ref } from 'vue' |
|
import { infoSchema } from './apiErrorLog.data' |
|
import { BasicModal, useModalInner } from '@/components/Modal' |
|
import { Description, useDescription } from '@/components/Description/index' |
|
|
|
defineOptions({ name: 'ErrorLogModal' }) |
|
|
|
const logData = ref() |
|
const [registerModalInner, { closeModal }] = useModalInner((record: Recordable) => { |
|
logData.value = record |
|
}) |
|
|
|
const [registerDescription] = useDescription({ |
|
column: 1, |
|
schema: infoSchema, |
|
data: logData, |
|
}) |
|
</script> |
|
|
|
<template> |
|
<BasicModal v-bind="$attrs" title="错误日志详情" width="800px" @register="registerModalInner" @ok="closeModal"> |
|
<Description @register="registerDescription" /> |
|
</BasicModal> |
|
</template>
|
|
|