系统bug修改,370对讲机集中测试
This commit is contained in:
parent
4e4fa5a991
commit
9699725520
|
|
@ -277,7 +277,8 @@ const {
|
|||
queryParams,
|
||||
permissions,
|
||||
tableConfig,
|
||||
apiConfig
|
||||
apiConfig,
|
||||
|
||||
dialogConfig1,
|
||||
dialogConfig2,
|
||||
dialogConfig3,
|
||||
|
|
|
|||
|
|
@ -33,7 +33,6 @@
|
|||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="装备名称" prop="zbmc">
|
||||
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
|
|
|
|||
|
|
@ -184,7 +184,12 @@ public class BigScreenController {
|
|||
return Ok.of(bigScreenService.findEnterprisesByBusinessRating(businessRating));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 根据企业id查询企业执法信息
|
||||
*
|
||||
* @param enterpriseId 企业id
|
||||
* @return 企业列表
|
||||
*/
|
||||
@GetMapping("/qyxx/zfxx")
|
||||
public Result<List<EnforcementInfo>> getEnforcementInfoByEnterpriseId(String enterpriseId) {
|
||||
return Ok.of(bigScreenService.findEnforcementInfoByEnterpriseId(enterpriseId));
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ public class StatisticController {
|
|||
|
||||
/**
|
||||
* 周报表
|
||||
|
||||
*
|
||||
* @param
|
||||
* @return 执法周报表统计
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -39,8 +39,6 @@ public class BigScreenService {
|
|||
Repository;
|
||||
private final EnforcementInfoService enforcementInfoService;
|
||||
private final EnforceCheckRepository enforceCheckRepository;
|
||||
private final OfficerRepository officerRepository;
|
||||
private final CaseRepository caseRepository;
|
||||
private final AutoEnforcementPlanRepository autoEnforcementPlanRepository;
|
||||
private final SupervisionCheckRepository supervisionCheckRepository;
|
||||
private final ReportCheckOperRepository reportCheckOperRepository;
|
||||
|
|
|
|||
Loading…
Reference in New Issue