修复部分功能 (#138)

* feature: 版本统一

* feature: 定时同步时默认值展示异常,增加提示

* feature: 修复数据归集搜索

* feature: 优化标注模板查询

* feature: 屏蔽webhook功能
This commit is contained in:
hhhhsc701
2025-12-10 14:31:05 +08:00
committed by GitHub
parent c18b7af2c4
commit 103c21945d
13 changed files with 193 additions and 412 deletions

View File

@@ -21,12 +21,13 @@ export default function WelcomePage() {
// 检查接口连通性的函数
const checkDeerFlowDeploy = async (): Promise<boolean> => {
try {
const response = await fetch('/deer-flow-backend/config', { // 替换为你的实际接口地址
const response = await fetch('/deer-flow-backend/config', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
},
timeout: 5000, // 5秒超时
cache: 'no-store'
});
// 检查 HTTP 状态码在 200-299 范围内