在线巡查设备、预警信息、自爆资产功能

This commit is contained in:
renhao02 2025-06-13 17:37:11 +08:00
parent afe295d861
commit 6b67657f80
4 changed files with 12 additions and 1 deletions

View File

@ -260,7 +260,15 @@ function objectSpanMethod({row, column, rowIndex, columnIndex}) {
return {rowspan: 0, colspan: 0}
}
}
if (columnIndex === 1) {
if (rowIndex === 0) {
return {rowspan: rowCountWeek, colspan: 1}
} else if (rowIndex === rowCountWeek) {
return {rowspan: rowCountAll, colspan: 1}
} else {
return {rowspan: 0, colspan: 0}
}
}
}

View File

@ -439,6 +439,7 @@ const options = [
{value: '3', label: '举报核查'},
{value: '4', label: '随机抽查'},
]
function handleQuery(queryParams) {
queryParams.currentNodeCode = 'plan_approval,plan_approval_failed'
queryParams.agencyCode = queryParams.agency?.agencyCode

View File

@ -82,6 +82,7 @@ public class StatisticController {
return PageResult.of(statisticService.getPagelaqkByindustryTypeDetail(query,user));
}
/**
* 执法周报表统计查看立案填报情况
*

View File

@ -47,6 +47,7 @@ public class EnterpriseWarnKafka {
enterpriseWarn.setImageUrl("https://10.17.97.98" + event.getStr("snappedPicUrl"));
LocalDateTime time = ZonedDateTime.parse(event.getStr("happenTime")).toLocalDateTime();
enterpriseWarn.setTime(time);
enterpriseWarn.setConfidence(event.getStr("similarity"));
enterpriseWarn.setJudgment(1);
enterpriseWarn.setRemark(event.getStr("remark"));