系统bug修改,370对讲机集中测试

This commit is contained in:
jiangzongtao 2025-08-29 20:09:50 +08:00
parent 4e4fa5a991
commit 9699725520
5 changed files with 9 additions and 6 deletions

View File

@ -277,7 +277,8 @@ const {
queryParams, queryParams,
permissions, permissions,
tableConfig, tableConfig,
apiConfig apiConfig,
dialogConfig1, dialogConfig1,
dialogConfig2, dialogConfig2,
dialogConfig3, dialogConfig3,

View File

@ -33,7 +33,6 @@
</el-col> </el-col>
<el-col :span="8"> <el-col :span="8">
<el-form-item label="装备名称" prop="zbmc"> <el-form-item label="装备名称" prop="zbmc">
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="8"> <el-col :span="8">

View File

@ -184,7 +184,12 @@ public class BigScreenController {
return Ok.of(bigScreenService.findEnterprisesByBusinessRating(businessRating)); return Ok.of(bigScreenService.findEnterprisesByBusinessRating(businessRating));
} }
/**
* 根据企业id查询企业执法信息
*
* @param enterpriseId 企业id
* @return 企业列表
*/
@GetMapping("/qyxx/zfxx") @GetMapping("/qyxx/zfxx")
public Result<List<EnforcementInfo>> getEnforcementInfoByEnterpriseId(String enterpriseId) { public Result<List<EnforcementInfo>> getEnforcementInfoByEnterpriseId(String enterpriseId) {
return Ok.of(bigScreenService.findEnforcementInfoByEnterpriseId(enterpriseId)); return Ok.of(bigScreenService.findEnforcementInfoByEnterpriseId(enterpriseId));

View File

@ -33,7 +33,7 @@ public class StatisticController {
/** /**
* 周报表 * 周报表
*
* @param * @param
* @return 执法周报表统计 * @return 执法周报表统计
*/ */

View File

@ -39,8 +39,6 @@ public class BigScreenService {
Repository; Repository;
private final EnforcementInfoService enforcementInfoService; private final EnforcementInfoService enforcementInfoService;
private final EnforceCheckRepository enforceCheckRepository; private final EnforceCheckRepository enforceCheckRepository;
private final OfficerRepository officerRepository;
private final CaseRepository caseRepository;
private final AutoEnforcementPlanRepository autoEnforcementPlanRepository; private final AutoEnforcementPlanRepository autoEnforcementPlanRepository;
private final SupervisionCheckRepository supervisionCheckRepository; private final SupervisionCheckRepository supervisionCheckRepository;
private final ReportCheckOperRepository reportCheckOperRepository; private final ReportCheckOperRepository reportCheckOperRepository;