| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <template>
- <BasicDrawer
- v-bind="$attrs"
- destroyOnClose
- @register="registerDrawer"
- :title="getTitle"
- :width="width"
- >
- <Description @register="registerDesc" :data="descData" />
- </BasicDrawer>
- </template>
- <script lang="ts" setup>
- import { onBeforeMount, ref } from 'vue'; // onBeforeMount,
- import { BasicDrawer, useDrawerInner } from '/@/components/Drawer';
- import { Description, useDescription } from '/@/components/Description';
- import { viewSchema } from './data';
- import { LogDetail } from '/@/api/monitor/LogApi';
- import { listDictModel } from '/@/api/common';
- import { formatDictValue } from '/@/utils';
- const descData = ref({});
- const getTitle = '查看系统日志';
- const width = '45%';
- const typeOptions = ref();
- onBeforeMount(async () => {
- typeOptions.value = await listDictModel({ dictCode: 'sys_login_log_type' });
- });
- const [registerDrawer] = useDrawerInner(async data => {
- console.log('::::::::::', data.record);
- const resData = await LogDetail(data.record.id);
- descData.value = {
- ...resData,
- type: formatDictValue(typeOptions.value, resData.type),
- };
- });
- const [registerDesc] = useDescription({
- schema: viewSchema,
- column: 2,
- size: 'middle',
- labelStyle: {
- width: '120px',
- },
- });
- </script>
|