执法人员接口、督导检查扥各功能bug修改
This commit is contained in:
parent
e95378280c
commit
76c83a45a7
|
|
@ -15,6 +15,7 @@ export const enterprises = {
|
|||
method: REQUEST_METHOD_TYPES.GET,
|
||||
params: query
|
||||
}),
|
||||
|
||||
importExcelFile(data) {
|
||||
return api({
|
||||
url: url + '/importFile',
|
||||
|
|
|
|||
|
|
@ -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] : []
|
||||
}
|
||||
|
|
|
|||
|
|
@ -168,6 +168,7 @@ function deserializeFields(data, fields) {
|
|||
}
|
||||
})
|
||||
}
|
||||
|
||||
async function handleDetail(row) {
|
||||
dialogConfig.value.show = true
|
||||
dialogConfig.value.mode = 'detail'
|
||||
|
|
|
|||
|
|
@ -54,6 +54,7 @@ public class OffSiteLawEnforceController {
|
|||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 非现场执法总数统计
|
||||
*
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@ public class OnlinePatrolController {
|
|||
|
||||
private final OnlinePatrolService onlinePatrolService;
|
||||
|
||||
|
||||
public OnlinePatrolController(OnlinePatrolService onlinePatrolService) {
|
||||
this.onlinePatrolService = onlinePatrolService;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue