diff --git a/src/views/sys/error-log/DetailModal.vue b/src/views/sys/error-log/DetailModal.vue
deleted file mode 100644
index 48159e01..00000000
--- a/src/views/sys/error-log/DetailModal.vue
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-
-
-
-
diff --git a/src/views/sys/error-log/data.tsx b/src/views/sys/error-log/data.tsx
deleted file mode 100644
index ab3a5cc5..00000000
--- a/src/views/sys/error-log/data.tsx
+++ /dev/null
@@ -1,67 +0,0 @@
-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
{() => text}
- }
- },
- {
- 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
- }
- })
-}
diff --git a/src/views/sys/error-log/index.vue b/src/views/sys/error-log/index.vue
deleted file mode 100644
index ae145174..00000000
--- a/src/views/sys/error-log/index.vue
+++ /dev/null
@@ -1,97 +0,0 @@
-
-
-
-
-
-
-
-
-
- {{ t('sys.errorLog.fireVueError') }}
-
-
- {{ t('sys.errorLog.fireResourceError') }}
-
-
- {{ t('sys.errorLog.fireAjaxError') }}
-
-
-
-
-
-
-
-
-
-
-
-