wvp-gb28181-project/web_src/src/components/CloudRecord.vue

204 lines
6.5 KiB
Vue
Raw Normal View History

2021-06-01 17:05:07 +08:00
<template>
<div id="app">
<el-container>
<el-header>
<uiHeader></uiHeader>
</el-header>
<el-main>
<div style="background-color: #FFFFFF; margin-bottom: 1rem; position: relative; padding: 0.5rem; text-align: left;">
<span v-if="!recordDetail" >云端录像</span>
<el-page-header v-if="recordDetail" @back="backToList" content="云端录像">
</el-page-header>
2021-07-16 16:34:51 +08:00
<div style="position: absolute; right: 5rem; top: 0.3rem;">
2021-07-19 17:54:01 +08:00
节点选择:
<el-select size="mini" @change="chooseMediaChange" style="width: 16rem; margin-right: 1rem;" v-model="mediaServerId" placeholder="请选择" :disabled="recordDetail">
2021-06-01 17:05:07 +08:00
<el-option
v-for="item in mediaServerList"
2021-07-16 16:34:51 +08:00
:key="item.id"
2021-07-19 17:22:54 +08:00
:label="item.id"
:value="item.id">
2021-06-01 17:05:07 +08:00
</el-option>
</el-select>
</div>
2021-07-16 16:34:51 +08:00
<div style="position: absolute; right: 1rem; top: 0.3rem;">
<el-button v-if="!recordDetail" icon="el-icon-refresh-right" circle size="mini" :loading="loading" @click="getRecordList()"></el-button>
</div>
</div>
<div v-if="!recordDetail">
2021-06-01 17:05:07 +08:00
<!--设备列表-->
<el-table :data="recordList" border style="width: 100%" :height="winHeight">
<el-table-column prop="app" label="应用名" align="center">
</el-table-column>
<el-table-column prop="stream" label="流ID" align="center">
</el-table-column>
<el-table-column prop="time" label="时间" align="center">
</el-table-column>
<el-table-column label="操作" width="360" align="center" fixed="right">
<template slot-scope="scope">
<el-button-group>
<el-button size="mini" icon="el-icon-video-camera-solid" type="primary" @click="showRecordDetail(scope.row)">查看</el-button>
<!-- <el-button size="mini" icon="el-icon-delete" type="danger" @click="deleteRecord(scope.row)">删除</el-button>-->
</el-button-group>
</template>
</el-table-column>
</el-table>
<el-pagination
style="float: right"
@size-change="handleSizeChange"
@current-change="currentChange"
:current-page="currentPage"
:page-size="count"
:page-sizes="[15, 25, 35, 50]"
layout="total, sizes, prev, pager, next"
:total="total">
</el-pagination>
</div>
<cloud-record-detail ref="cloudRecordDetail" v-if="recordDetail" :recordFile="chooseRecord" :mediaServerId="mediaServerId" :mediaServerPath="mediaServerPath" ></cloud-record-detail>
2021-06-01 17:05:07 +08:00
</el-main>
</el-container>
</div>
</template>
<script>
import uiHeader from './UiHeader.vue'
import cloudRecordDetail from './CloudRecordDetail.vue'
2021-07-16 16:34:51 +08:00
import MediaServer from './service/MediaServer'
2021-06-01 17:05:07 +08:00
export default {
name: 'app',
components: {
uiHeader, cloudRecordDetail
},
data() {
return {
mediaServerList: [], // 滅体节点列表
2021-07-19 17:22:54 +08:00
mediaServerId: null, // 媒体服务
mediaServerPath: null, // 媒体服务地址
2021-06-01 17:05:07 +08:00
recordList: [], // 设备列表
chooseRecord: null, // 媒体服务
updateLooper: 0, //数据刷新轮训标志
winHeight: window.innerHeight - 250,
currentPage:1,
count:15,
total:0,
loading: false,
2021-07-16 16:34:51 +08:00
mediaServerObj : new MediaServer(),
2021-06-01 17:05:07 +08:00
recordDetail: false
};
},
computed: {
},
mounted() {
this.initData();
},
destroyed() {
// this.$destroy('videojs');
},
methods: {
initData: function() {
// 获取媒体节点列表
this.getMediaServerList();
// this.getRecordList();
},
currentChange: function(val){
this.currentPage = val;
this.getRecordList();
},
handleSizeChange: function(val){
this.count = val;
this.getRecordList();
},
getMediaServerList: function (){
let that = this;
that.mediaServerObj.getOnlineMediaServerList((data)=>{
2021-07-19 17:22:54 +08:00
that.mediaServerList = data.data;
2021-06-01 17:05:07 +08:00
if (that.mediaServerList.length > 0) {
2021-07-19 17:22:54 +08:00
that.mediaServerId = that.mediaServerList[0].id
let port = that.mediaServerList[0].httpPort;
if (location.protocol === "https:" && that.mediaServerList[0].httpSSlPort) {
port = that.mediaServerList[0].httpSSlPort
}
that.mediaServerPath = location.protocol + "//" + that.mediaServerList[0].streamIp + ":" + port
2021-06-01 17:05:07 +08:00
that.getRecordList();
}
2021-07-16 16:34:51 +08:00
})
2021-06-01 17:05:07 +08:00
},
getRecordList: function (){
let that = this;
this.$axios({
method: 'get',
2021-07-19 17:22:54 +08:00
url:`/record_proxy/${that.mediaServerId}/api/record/list`,
2021-06-01 17:05:07 +08:00
params: {
page: that.currentPage,
count: that.count
}
}).then(function (res) {
console.log(res)
that.total = res.data.data.total;
that.recordList = res.data.data.list;
that.loading = false;
}).catch(function (error) {
console.log(error);
that.loading = false;
});
},
backToList(){
this.recordDetail= false;
},
chooseMediaChange(val){
console.log(val)
2021-07-19 17:22:54 +08:00
this.total = 0;
this.recordList = [];
2021-06-01 17:05:07 +08:00
this.getRecordList();
},
showRecordDetail(row){
this.recordDetail = true;
this.chooseRecord = row;
// 查询是否存在录像
// this.$axios({
// method: 'delete',
// url:`/record_proxy/api/record/delete`,
// params: {
// page: this.currentPage,
// count: this.count
// }
// }).then((res) => {
// console.log(res)
// this.total = res.data.data.total;
// this.recordList = res.data.data.list;
// }).catch(function (error) {
// console.log(error);
// });
},
deleteRecord(){
// TODO
let that = this;
this.$axios({
method: 'delete',
url:`/record_proxy/api/record/delete`,
params: {
page: that.currentPage,
count: that.count
}
}).then(function (res) {
console.log(res)
that.total = res.data.data.total;
that.recordList = res.data.data.list;
}).catch(function (error) {
console.log(error);
});
}
}
};
</script>
<style>
</style>