From 5a75381a00a555443925bbbd8e333b14473b3ed1 Mon Sep 17 00:00:00 2001 From: 648540858 <648540858@qq.com> Date: 星期二, 17 十月 2023 15:34:01 +0800 Subject: [PATCH] 基于新的云端录像结构实现国标录像 --- web_src/src/components/dialog/recordDownload.vue | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/web_src/src/components/dialog/recordDownload.vue b/web_src/src/components/dialog/recordDownload.vue index 7a94540..95a512e 100755 --- a/web_src/src/components/dialog/recordDownload.vue +++ b/web_src/src/components/dialog/recordDownload.vue @@ -137,10 +137,11 @@ getFileDownload: function (){ this.$axios({ method: 'get', - url:`/record_proxy/${this.mediaServerId}/api/record/file/download/task/add`, + url:`/api/cloud/record/task/add`, params: { app: this.app, stream: this.stream, + mediaServerId: this.mediaServerId, startTime: null, endTime: null, } @@ -169,10 +170,9 @@ getProgressForFile: function (callback){ this.$axios({ method: 'get', - url:`/record_proxy/${this.mediaServerId}/api/record/file/download/task/list`, + url:`/api/cloud/record/task/list`, params: { - app: this.app, - stream: this.stream, + mediaServerId: this.mediaServerId, taskId: this.taskId, isEnd: true, } -- Gitblit v1.8.0