增加海康视频播放以及回访功能

This commit is contained in:
renhao02 2025-04-30 18:05:22 +08:00
parent 0f83635982
commit 944c8127ab
5 changed files with 5 additions and 3 deletions

View File

@ -901,7 +901,7 @@ function handleClose2() {
dialogConfig2.value.show = false dialogConfig2.value.show = false
} }
//---------------------------------------------- //---------------------------------------
// //
let videoConfig = reactive({fallBackTime: [], single: false, rate: 1, volume: 50, muted: true}) let videoConfig = reactive({fallBackTime: [], single: false, rate: 1, volume: 50, muted: true})
let player let player

View File

@ -207,6 +207,7 @@ public class CaseController {
* *
* @param caseId 案件id * @param caseId 案件id
* @param caseInfo 案件实体 * @param caseInfo 案件实体
* @return 案件实体
*/ */
@PutMapping("/updateSupplementVerify/{caseId}") @PutMapping("/updateSupplementVerify/{caseId}")
public Result<Case> updateSupplementVerify(@PathVariable String caseId, @RequestBody Case caseInfo, @CurrentUser RemoteUserInfo user) { public Result<Case> updateSupplementVerify(@PathVariable String caseId, @RequestBody Case caseInfo, @CurrentUser RemoteUserInfo user) {

View File

@ -93,6 +93,7 @@ public class EnforcementInfoHistoryController {
/** /**
* 执法立案统计不分页 * 执法立案统计不分页
*
* @param query * @param query
* @return 查询执法立案统计结果 * @return 查询执法立案统计结果
*/ */

View File

@ -8,7 +8,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
/** /**
* 综合执法/海康威视 * 综合执法/海康威视接口
*/ */
@RestController @RestController
@RequestMapping(Constants.API_PREFIX + "/hikvision") @RequestMapping(Constants.API_PREFIX + "/hikvision")