feat(frontend): 添加前端页面

This commit is contained in:
2977094657
2025-07-25 20:21:26 +08:00
parent 0b12e31c96
commit 540a0fd823
21 changed files with 15094 additions and 13 deletions

View File

@@ -0,0 +1,26 @@
// 客户端插件检查API连接状态
export default defineNuxtPlugin(async (nuxtApp) => {
const { healthCheck } = useApi()
const appStore = useAppStore()
// 检查API连接
const checkApiConnection = async () => {
try {
const result = await healthCheck()
if (result.status === 'healthy') {
appStore.setApiStatus('connected', '已连接到后端API')
} else {
appStore.setApiStatus('error', 'API响应异常')
}
} catch (error) {
appStore.setApiStatus('error', '无法连接到后端API请确保后端服务已启动')
console.error('API连接失败:', error)
}
}
// 初始检查
await checkApiConnection()
// 定期检查每30秒
setInterval(checkApiConnection, 30000)
})