diff --git a/src/components/SystemHealth.vue b/src/components/SystemHealth.vue new file mode 100644 index 0000000..8734fca --- /dev/null +++ b/src/components/SystemHealth.vue @@ -0,0 +1,465 @@ + + + + + \ No newline at end of file diff --git a/src/router/index.js b/src/router/index.js index 4192c2e..b0d03f2 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -7,6 +7,7 @@ import HowToUse from '../components/HowToUse.vue' import CommunityRequest from '../components/CommunityRequest.vue' import PartnerRequest from '../components/PartnerRequest.vue' import ImageRecognition from '../components/ImageRecognition.vue' +import SystemHealth from '../components/SystemHealth.vue' const routes = [ { @@ -69,6 +70,15 @@ const routes = [ meta: { title: '蜂快AI·快递取件码识别' } + }, + { + path: '/system-health', + name: 'SystemHealth', + component: SystemHealth, + meta: { + title: '系统健康状态', + requiresAuth: true + } } ]