非现场执法在线巡查视频接口调试,系统bug处理

This commit is contained in:
jiangzongtao 2025-08-22 19:57:49 +08:00
parent 63511ad5c0
commit f290f40c0c
6 changed files with 14 additions and 8 deletions

View File

@ -491,6 +491,13 @@ const baseRoutes = [
meta: {title: '非现场执法'},
children: [
{
path: 'index',
name: '_index',
component: () => import('@views/fxczfgl/index.vue'),
meta: {
title: '非现场执法管理'
}
},
{
path: 'zxxcxx',

View File

@ -298,7 +298,8 @@ watch(
checkDate: [{required: true, message: '检查日期不能为空', trigger: 'change'}],
checkTime: [{required: true, message: '检查时间不能为空', trigger: 'change'}],
checkResult: [{required: true, message: '检查结果不能为空', trigger: 'change'}],
fillingFlag: [{required: true, message: '是否立案不能为空', trigger: 'change'}],
checkPlace: [
{required: true, message: '检查场所不能为空', trigger: 'blur'},
{min: 0, max: 200, message: '检查场所长度不能超过200', trigger: 'change'},
],

View File

@ -179,7 +179,9 @@ public class BigScreenController {
* @param businessRating 企业分级
* @return 企业列表
*/
n Ok.of(bigScreenService.findEnterprisesByBusinessRating(businessRating));
@GetMapping("/qyxx")
public Result<List<Enterprise>> getEnterprisesByBusinessRating(String businessRating) {
return Ok.of(bigScreenService.findEnterprisesByBusinessRating(businessRating));
}

View File

@ -21,11 +21,6 @@ public class OnlinePatrolController {
private final OnlinePatrolService onlinePatrolService;
public OnlinePatrolController(OnlinePatrolService onlinePatrolService) {
this.onlinePatrolService = onlinePatrolService;
}
/**
* 创建报送审批
*

View File

@ -692,6 +692,7 @@ public class EnterprisePoniteScheduleService {
refreshToken();
}
} catch (Exception e) {
log.info("危化企业信息查询查询异常:" + e);
return flag;
}

View File

@ -166,7 +166,7 @@ public class EnterpriseScheduleService {
.header("appId", ssoClientProperties.getClientId())
.body("{\"page\": " + page + ",\"limit\": 1000,\"entity\": {}}")
.execute()
.body();
log.info("企业信息查询结果:{}", body);
JsonNode jsonNode = objectMapper.readValue(body, JsonNode.class);
if (jsonNode.has("code") && 200 == jsonNode.get("code").asInt() && jsonNode.has("data")) {