1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
| import { Tag } from 'ant-design-vue';
| import { BasicColumn } from '@/components/Table';
| import { ErrorTypeEnum } from '@/enums/exceptionEnum';
| import { useI18n } from '@/hooks/web/useI18n';
|
| const { t } = useI18n();
|
| export function getColumns(): BasicColumn[] {
| return [
| {
| dataIndex: 'type',
| title: t('sys.errorLog.tableColumnType'),
| width: 80,
| customRender: ({ text }) => {
| const color =
| text === ErrorTypeEnum.VUE
| ? 'green'
| : text === ErrorTypeEnum.RESOURCE
| ? 'cyan'
| : text === ErrorTypeEnum.PROMISE
| ? 'blue'
| : ErrorTypeEnum.AJAX
| ? 'red'
| : 'purple';
| return <Tag color={color}>{() => text}</Tag>;
| },
| },
| {
| dataIndex: 'url',
| title: 'URL',
| width: 200,
| },
| {
| dataIndex: 'time',
| title: t('sys.errorLog.tableColumnDate'),
| width: 160,
| },
| {
| dataIndex: 'file',
| title: t('sys.errorLog.tableColumnFile'),
| width: 200,
| },
| {
| dataIndex: 'name',
| title: 'Name',
| width: 200,
| },
| {
| dataIndex: 'message',
| title: t('sys.errorLog.tableColumnMsg'),
| width: 300,
| },
| {
| dataIndex: 'stack',
| title: t('sys.errorLog.tableColumnStackMsg'),
| },
| ];
| }
|
| export function getDescSchema(): any {
| return getColumns().map((column) => {
| return {
| field: column.dataIndex!,
| label: column.title,
| };
| });
| }
|
|