修改上传图片安全验证问题

This commit is contained in:
张成
2026-02-14 12:59:21 +08:00
parent 8688b6b82d
commit 64f0267457
54 changed files with 239 additions and 240 deletions

View File

@@ -410,7 +410,7 @@ export const useListStore = create<TennisStore>()((set, get) => ({
return Promise.resolve();
} catch (error) {
console.error("更新列表数据失败:", error);
console.warn("更新列表数据失败:", error);
return Promise.reject(error);
}
},
@@ -724,7 +724,7 @@ export const useListStore = create<TennisStore>()((set, get) => ({
}
return [];
} catch (error) {
console.error("获取行政区列表失败:", error);
console.warn("获取行政区列表失败:", error);
return [];
}
},