data.tsx 1.5 KB

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