fix(system): 修复用户定位卡号更新逻辑和CORS配置问题

- 修复CORSFilter中content type拼写错误,从textml改为text/html
- 优化用户定位卡号更新逻辑,添加空值检查和相同卡号判断
- 启用风险管理系统数据获取功能,取消相关注释代码
- 添加调试日志输出,便于排查盲板措施相关问题
- 修复选择措施组件中的选中状态处理逻辑
- 添加页面重置时的调试日志输出
dev_flv
wangyan 2026-01-08 15:29:12 +08:00
parent 2e31f33294
commit dc573cead8
3 changed files with 5 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@ -239,7 +239,8 @@ const fnGoEdit = async (id) => {
}; };
const fnResetPaginationTransfer = () => { const fnResetPaginationTransfer = () => {
fnGetData(searchForm); console.log("fnResetPaginationTransfer");
fnGetData();
tableRef.value.clearSelection(); tableRef.value.clearSelection();
}; };

View File

@ -94,7 +94,7 @@ import { getHiddenCount, getMemoryUsage } from "@/request/index.js";
import { reactive } from "vue"; import { reactive } from "vue";
import CountTo from "vue-countup-v3"; import CountTo from "vue-countup-v3";
import { useRouter } from "vue-router"; import { useRouter } from "vue-router";
// import { getRiskManagement } from "@/request/large_screen_data_display.js"; import { getRiskManagement } from "@/request/large_screen_data_display.js";
const router = useRouter(); const router = useRouter();
const data = reactive({ const data = reactive({
@ -114,10 +114,10 @@ const data = reactive({
}); });
const fnGetData = async () => { const fnGetData = async () => {
const { hidCount } = await getHiddenCount(); const { hidCount } = await getHiddenCount();
// const { riskCount } = await getRiskManagement(); const { riskCount } = await getRiskManagement();
const { pd: memoryUsage } = await getMemoryUsage(); const { pd: memoryUsage } = await getMemoryUsage();
data.hidCount = hidCount; data.hidCount = hidCount;
// data.riskCount = riskCount; data.riskCount = riskCount;
data.memoryUsage = memoryUsage; data.memoryUsage = memoryUsage;
}; };
fnGetData(); fnGetData();