大屏页面完善,接口完善

This commit is contained in:
renhao02 2025-05-09 18:19:50 +08:00
parent d67712d9cb
commit 45aeb1beae
3 changed files with 1 additions and 12 deletions

View File

@ -100,16 +100,6 @@ const handleGO = (data) => {
} }
} }
const handleTo = (data) => {
topActive.value = data.path
if (data.router) {
router.push({
path: data.path,
})
} else {
window.open(`${baseURL}/${data.path}/index.html#/`)
}
}
const handleEdit = () => { const handleEdit = () => {
userStore.isDraggable = true userStore.isDraggable = true

View File

@ -24,7 +24,6 @@ import java.util.Map;
public class BigScreenController { public class BigScreenController {
private final BigScreenService bigScreenService; private final BigScreenService bigScreenService;
public BigScreenController(BigScreenService bigScreenService) { public BigScreenController(BigScreenService bigScreenService) {
this.bigScreenService = bigScreenService; this.bigScreenService = bigScreenService;
} }

View File

@ -267,7 +267,7 @@ public class ReportCheckService {
//自动生成执法检查信息 //自动生成执法检查信息
EnforcementInfoDto enforcementInfoDto = new EnforcementInfoDto(); EnforcementInfoDto enforcementInfoDto = new EnforcementInfoDto();
enforcementInfoDto.setEnterpriseIds(ltdIds); enforcementInfoDto.setEnterpriseIds(ltdIds);
enforcementInfoDto.setDataFrom("3");//转交 enforcementInfoDto.setDataFrom("3");//举报核查转交
enforcementInfoService.saveEnforcementInfo(enforcementInfoDto, user); enforcementInfoService.saveEnforcementInfo(enforcementInfoDto, user);
}); });
} }