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