1.优化地区csv加载机制 2.修复数据库监控无法访问问题 3.增加了登录状态保存 4.针对session存储机制做适配 5.文件扫描机制优化,并行扫描速度更快

This commit is contained in:
2026-06-30 18:21:30 +08:00
parent 694cd8d3ee
commit 3c0aa59691
17 changed files with 175 additions and 133 deletions
@@ -75,9 +75,9 @@
<script lang="ts" setup>
import app from "@/constants/app";
import { CacheToken } from "@/constants/cacheKey";
import baseService from "@/service/baseService";
import { getCache } from "@/utils/cache";
import { getToken } from "@/utils/cache";
import { copyToClipboard } from "@/utils/utils";
import { ElMessage } from "element-plus";
import axios from "axios";
@@ -137,7 +137,7 @@ const loadBlobUrl = (fileId: string): Promise<string> => {
const base = (app.api || "").replace(/\/$/, "");
const url = `${base}/filescan/file/display/${fileId}`;
const token = getCache(CacheToken, { isSessionStorage: true }, {})?.token;
const token = getToken();
const headers: Record<string, string> = {};
if (token) headers.token = token;