From 2b2efb59a61a54b398f8f6c9263f37d41c18e65c Mon Sep 17 00:00:00 2001 From: 648540858 <648540858@qq.com> Date: 星期四, 11 一月 2024 14:56:11 +0800 Subject: [PATCH] 修复多个推流推送到上级是不完整的问题,修改平台注销时不删除自己模拟的订阅信息 --- web_src/src/components/dialog/recordDownload.vue | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/web_src/src/components/dialog/recordDownload.vue b/web_src/src/components/dialog/recordDownload.vue old mode 100644 new mode 100755 index 7a94540..220da8b --- a/web_src/src/components/dialog/recordDownload.vue +++ b/web_src/src/components/dialog/recordDownload.vue @@ -27,7 +27,7 @@ }, data() { return { - title: "鍥涘�嶉�熶笅杞戒腑...", + title: "涓嬭浇涓�...", deviceId: "", channelId: "", app: "", @@ -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