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/CloudRecordDetail.vue | 18 ++++++++++-------- 1 files changed, 10 insertions(+), 8 deletions(-) diff --git a/web_src/src/components/CloudRecordDetail.vue b/web_src/src/components/CloudRecordDetail.vue index c32f598..a3b1bc6 100755 --- a/web_src/src/components/CloudRecordDetail.vue +++ b/web_src/src/components/CloudRecordDetail.vue @@ -37,11 +37,11 @@ <div class="record-list-box" :style="recordListStyle"> <ul v-if="detailFiles.length >0" class="infinite-list record-list" v-infinite-scroll="infiniteScroll" > <li v-for="(item,index) in detailFiles" :key="index" class="infinite-list-item record-list-item" > - <el-tag v-if="choosedFile !== item.filename" @click="chooseFile(item)"> + <el-tag v-if="choosedFile !== item.fileName" @click="chooseFile(item)"> <i class="el-icon-video-camera" ></i> {{ getFileShowName(item) }} </el-tag> - <el-tag type="danger" v-if="choosedFile === item.filename"> + <el-tag type="danger" v-if="choosedFile === item.fileName"> <i class="el-icon-video-camera" ></i> {{ getFileShowName(item) }} </el-tag> @@ -480,12 +480,13 @@ let that = this; this.$axios({ method: 'get', - url:`/record_proxy/${that.mediaServerId}/api/record/file/download/task/add`, + url:`/api/cloud/record/task/add`, params: { - app: that.app, - stream: that.stream, - startTime: moment(this.taskTimeRange[0]).format('YYYY-MM-DD HH:mm:ss'), - endTime: moment(this.taskTimeRange[1]).format('YYYY-MM-DD HH:mm:ss'), + app: this.app, + stream: this.stream, + mediaServerId: this.mediaServerId, + startTime: moment(this.taskTimeRange[0]).format('YYYY-MM-DD HH:mm:ss'), + endTime: moment(this.taskTimeRange[1]).format('YYYY-MM-DD HH:mm:ss'), } }).then(function (res) { if (res.data.code === 0 ) { @@ -505,8 +506,9 @@ let that = this; this.$axios({ method: 'get', - url:`/record_proxy/${that.mediaServerId}/api/record/file/download/task/list`, + url:`/api/cloud/record/task/list`, params: { + mediaServerId: this.mediaServerId, isEnd: isEnd, } }).then(function (res) { -- Gitblit v1.8.0