执法人员接口、督导检查扥各功能bug修改

This commit is contained in:
hanqi 2025-07-04 17:25:04 +08:00
parent e95378280c
commit 76c83a45a7
5 changed files with 5 additions and 0 deletions

View File

@ -15,6 +15,7 @@ export const enterprises = {
method: REQUEST_METHOD_TYPES.GET,
params: query
}),
importExcelFile(data) {
return api({
url: url + '/importFile',

View File

@ -148,6 +148,7 @@ const handleChange = (val) => {
if (Array.isArray(val)) {
selectedEnterprises = enterprises.value.filter(enterprise => val.includes(enterprise.enterpriseId))
} else {
const selectedEnterprise = enterprises.value.find(enterprise => enterprise.enterpriseId === val)
selectedEnterprises = selectedEnterprise ? [selectedEnterprise] : []
}

View File

@ -168,6 +168,7 @@ function deserializeFields(data, fields) {
}
})
}
async function handleDetail(row) {
dialogConfig.value.show = true
dialogConfig.value.mode = 'detail'

View File

@ -54,6 +54,7 @@ public class OffSiteLawEnforceController {
}
/**
* 非现场执法总数统计
*

View File

@ -21,6 +21,7 @@ public class OnlinePatrolController {
private final OnlinePatrolService onlinePatrolService;
public OnlinePatrolController(OnlinePatrolService onlinePatrolService) {
this.onlinePatrolService = onlinePatrolService;
}