[1078] 适配新UI
This commit is contained in:
@@ -64,3 +64,27 @@ export function queryChannels(params) {
|
||||
})
|
||||
}
|
||||
|
||||
export function play(params) {
|
||||
const { phoneNumber, channelId, type } = params
|
||||
return request({
|
||||
method: 'get',
|
||||
url: '/api/jt1078/live/start',
|
||||
params: {
|
||||
phoneNumber: phoneNumber,
|
||||
channelId: channelId,
|
||||
type: type
|
||||
}
|
||||
})
|
||||
}
|
||||
export function stopPlay(params) {
|
||||
const { phoneNumber, channelId } = params
|
||||
return request({
|
||||
method: 'get',
|
||||
url: '/api/jt1078/live/stop',
|
||||
params: {
|
||||
phoneNumber: phoneNumber,
|
||||
channelId: channelId
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
@@ -99,7 +99,7 @@ export const constantRoutes = [
|
||||
meta: { title: '部标设备', icon: 'jtDevice' }
|
||||
},
|
||||
{
|
||||
path: '/jtDevice/record/:deviceId/:channelDeviceId',
|
||||
path: '/jtDevice/record/:phoneNumber/:channelId',
|
||||
name: 'JTDeviceRecord',
|
||||
component: () => import('@/views/jtDevice/channel/record'),
|
||||
meta: { title: '部标录像' }
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { deleteDeviceById, queryChannels, queryDeviceById, queryDevices } from '@/api/jtDevice'
|
||||
import { deleteDeviceById, play, queryChannels, queryDeviceById, queryDevices, stopPlay } from '@/api/jtDevice'
|
||||
import { add } from '@/api/user'
|
||||
import { update } from '@/api/group'
|
||||
|
||||
@@ -62,6 +62,26 @@ const actions = {
|
||||
reject(error)
|
||||
})
|
||||
})
|
||||
},
|
||||
play({ commit }, params) {
|
||||
return new Promise((resolve, reject) => {
|
||||
play(params).then(response => {
|
||||
const { data } = response
|
||||
resolve(data)
|
||||
}).catch(error => {
|
||||
reject(error)
|
||||
})
|
||||
})
|
||||
},
|
||||
stopPlay({ commit }, params) {
|
||||
return new Promise((resolve, reject) => {
|
||||
stopPlay(params).then(response => {
|
||||
const { data } = response
|
||||
resolve(data)
|
||||
}).catch(error => {
|
||||
reject(error)
|
||||
})
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -124,6 +124,7 @@
|
||||
<script>
|
||||
import devicePlayer from '../jtDevicePlayer.vue'
|
||||
import channelEdit from './edit.vue'
|
||||
import { play } from '@/api/jtDevice'
|
||||
|
||||
export default {
|
||||
name: 'ChannelList',
|
||||
@@ -131,11 +132,15 @@ export default {
|
||||
channelEdit,
|
||||
devicePlayer
|
||||
},
|
||||
props: {
|
||||
deviceId: {
|
||||
type: String,
|
||||
default: null
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
deviceService: new JTDeviceService(),
|
||||
device: null,
|
||||
deviceId: this.$route.params.deviceId,
|
||||
deviceChannelList: [],
|
||||
updateLooper: 0, // 数据刷新轮训标志
|
||||
searchSrt: '',
|
||||
@@ -168,14 +173,13 @@ export default {
|
||||
this.deviceId = this.$route.params.deviceId
|
||||
this.currentPage = 1
|
||||
this.count = 15
|
||||
this.deviceService.getDevice(this.deviceId, (result) => {
|
||||
if (result.code === 0) {
|
||||
this.device = result.data
|
||||
}
|
||||
}, (error) => {
|
||||
console.log('获取设备信息失败')
|
||||
console.error(error)
|
||||
})
|
||||
this.$store.dispatch('jtDevice/queryDeviceById', this.deviceId)
|
||||
.then(data => {
|
||||
this.device = data
|
||||
})
|
||||
.catch(err => {
|
||||
console.error(err)
|
||||
})
|
||||
},
|
||||
currentChange: function(val) {
|
||||
this.currentPage = val
|
||||
@@ -187,17 +191,20 @@ export default {
|
||||
},
|
||||
getDeviceChannelList: function() {
|
||||
if (typeof (this.deviceId) === 'undefined') return
|
||||
this.deviceService.getAllChannel(this.currentPage, this.count, this.searchSrt, this.deviceId, (data) => {
|
||||
console.log(data)
|
||||
if (data.code === 0) {
|
||||
this.total = data.data.total
|
||||
this.deviceChannelList = data.data.list
|
||||
this.$store.dispatch('jtDevice/queryChannels', {
|
||||
page: this.currentPage,
|
||||
count: this.count,
|
||||
query: this.searchSrt,
|
||||
deviceId: this.deviceId
|
||||
})
|
||||
.then(data => {
|
||||
this.total = data.total
|
||||
this.deviceChannelList = data.list
|
||||
// 防止出现表格错位
|
||||
this.$nextTick(() => {
|
||||
this.$refs.channelListTable.doLayout()
|
||||
})
|
||||
}
|
||||
})
|
||||
})
|
||||
},
|
||||
|
||||
// 通知设备上传媒体流
|
||||
@@ -205,38 +212,33 @@ export default {
|
||||
this.isLoging = true
|
||||
const channelId = itemData.channelId
|
||||
console.log('通知设备推流1:' + this.device.phoneNumber + ' : ' + channelId)
|
||||
this.$axios({
|
||||
method: 'get',
|
||||
url: '/api/jt1078/live/start',
|
||||
params: {
|
||||
phoneNumber: this.device.phoneNumber,
|
||||
channelId: channelId,
|
||||
type: 0
|
||||
}
|
||||
}).then((res) => {
|
||||
this.isLoging = false
|
||||
if (res.data.code === 0) {
|
||||
|
||||
this.$store.dispatch('jtDevice/play', {
|
||||
phoneNumber: this.device.phoneNumber,
|
||||
channelId: channelId,
|
||||
type: 0
|
||||
})
|
||||
.then(data => {
|
||||
setTimeout(() => {
|
||||
const snapId = this.device.phoneNumber + '_' + channelId
|
||||
this.loadSnap[this.device.phoneNumber + channelId] = 0
|
||||
this.getSnapErrorEvent(snapId)
|
||||
}, 5000)
|
||||
itemData.streamId = res.data.data.stream
|
||||
itemData.streamId = data.stream
|
||||
this.$refs.devicePlayer.openDialog('media', this.device.phoneNumber, channelId, {
|
||||
streamInfo: res.data.data,
|
||||
streamInfo: data,
|
||||
hasAudio: itemData.hasAudio
|
||||
})
|
||||
setTimeout(() => {
|
||||
this.initData()
|
||||
}, 1000)
|
||||
} else {
|
||||
this.$message.error(res.data.msg)
|
||||
}
|
||||
}).catch((e) => {
|
||||
console.error(e)
|
||||
this.isLoging = false
|
||||
// that.$message.error("请求超时");
|
||||
})
|
||||
})
|
||||
.catch(err => {
|
||||
console.error(err)
|
||||
})
|
||||
.finally(() => {
|
||||
this.isLoging = false
|
||||
})
|
||||
},
|
||||
moreClick: function(command, itemData) {
|
||||
if (command === 'records') {
|
||||
@@ -248,36 +250,28 @@ export default {
|
||||
}
|
||||
},
|
||||
queryRecords: function(itemData) {
|
||||
this.$router.push(`/jtRecordDetail/${this.device.phoneNumber}/${itemData.channelId}`)
|
||||
this.$router.push(`/jtDevice/record/${this.device.phoneNumber}/${itemData.channelId}`)
|
||||
},
|
||||
queryCloudRecords: function(itemData) {
|
||||
const deviceId = this.deviceId
|
||||
const deviceId = this.device.phoneNumber
|
||||
const channelId = itemData.channelId
|
||||
|
||||
this.$router.push(`/cloudRecordDetail/rtp/${deviceId}_${channelId}`)
|
||||
this.$router.push(`/cloudRecord/detail/rtp/${deviceId}_${channelId}`)
|
||||
},
|
||||
stopDevicePush: function(itemData) {
|
||||
this.$axios({
|
||||
method: 'get',
|
||||
url: '/api/jt1078/live/stop',
|
||||
params: {
|
||||
phoneNumber: this.device.phoneNumber,
|
||||
channelId: itemData.channelId
|
||||
}
|
||||
}).then((res) => {
|
||||
console.log(res)
|
||||
if (res.data.code === 0) {
|
||||
this.initData()
|
||||
} else {
|
||||
this.$message.error(res.data.msg)
|
||||
}
|
||||
}).catch(function(error) {
|
||||
console.error(error)
|
||||
this.$store.dispatch('jtDevice/stopPlay', {
|
||||
phoneNumber: this.device.phoneNumber,
|
||||
channelId: itemData.channelId
|
||||
})
|
||||
.then((data) => {
|
||||
this.initData()
|
||||
})
|
||||
.catch(function(error) {
|
||||
console.error(error)
|
||||
})
|
||||
},
|
||||
getSnap: function(row) {
|
||||
const baseUrl = window.baseUrl ? window.baseUrl : ''
|
||||
return ((process.env.NODE_ENV === 'development') ? process.env.BASE_API : baseUrl) + '/api/device/query/snap/' + this.device.phoneNumber + '/' + row.channelId
|
||||
return ((process.env.NODE_ENV === 'development') ? process.env.VUE_APP_BASE_API : baseUrl) + '/api/device/query/snap/' + this.device.phoneNumber + '/' + row.channelId
|
||||
},
|
||||
getBigSnap: function(row) {
|
||||
return [this.getSnap(row)]
|
||||
@@ -290,17 +284,15 @@ export default {
|
||||
return
|
||||
}
|
||||
setTimeout(() => {
|
||||
const url = (process.env.NODE_ENV === 'development' ? 'debug' : '') + '/api/device/query/snap/' + deviceId + '/' + channelId
|
||||
const baseUrl = window.baseUrl ? window.baseUrl : ''
|
||||
const url = (process.env.NODE_ENV === 'development' ? process.env.VUE_APP_BASE_API : baseUrl) + '/api/device/query/snap/' + deviceId + '/' + channelId
|
||||
this.loadSnap[deviceId + channelId]++
|
||||
document.getElementById(deviceId + channelId).setAttribute('src', url + '?' + new Date().getTime())
|
||||
}, 1000)
|
||||
}
|
||||
},
|
||||
showDevice: function() {
|
||||
this.$router.push(this.beforeUrl).then(() => {
|
||||
this.initParam()
|
||||
this.initData()
|
||||
})
|
||||
this.$emit('show-device')
|
||||
},
|
||||
search: function() {
|
||||
this.currentPage = 1
|
||||
@@ -308,6 +300,10 @@ export default {
|
||||
this.initData()
|
||||
},
|
||||
updateChannel: function(row) {
|
||||
this.$store.dispatch('jtDevice/updateChannel', row)
|
||||
.then(data => {
|
||||
|
||||
})
|
||||
this.$axios({
|
||||
method: 'post',
|
||||
url: `/api/jt1078/terminal/channel/update`,
|
||||
|
||||
@@ -1,70 +1,74 @@
|
||||
<template>
|
||||
<div style="width: 100%">
|
||||
<div class="page-header" >
|
||||
<div class="page-header">
|
||||
<div class="page-title">
|
||||
<el-page-header @back="goBack" content="部标录像"></el-page-header>
|
||||
<el-page-header content="部标录像" @back="goBack" />
|
||||
</div>
|
||||
</div>
|
||||
<el-container>
|
||||
<el-aside width="300px">
|
||||
<div class="record-list-box-box">
|
||||
<el-date-picker size="mini" v-model="chooseDate" type="date" value-format="yyyy-MM-dd" placeholder="日期" @change="dateChange()"></el-date-picker>
|
||||
<div class="record-list-box" v-loading="recordsLoading" :style="recordListStyle">
|
||||
<ul v-if="detailFiles.length >0" class="infinite-list record-list" >
|
||||
<li v-for="item in detailFiles" class="infinite-list-item record-list-item" >
|
||||
<el-date-picker v-model="chooseDate" size="mini" type="date" value-format="yyyy-MM-dd" placeholder="日期" @change="dateChange()" />
|
||||
<div v-loading="recordsLoading" class="record-list-box" :style="recordListStyle">
|
||||
<ul v-if="detailFiles.length >0" class="infinite-list record-list">
|
||||
<li v-for="item in detailFiles" class="infinite-list-item record-list-item">
|
||||
|
||||
<el-tag v-if="chooseFile !== item" @click="checkedFile(item)">
|
||||
<i class="el-icon-video-camera" ></i>
|
||||
{{ moment(item.startTime).format('HH:mm:ss')}}-{{ moment(item.endTime).format('HH:mm:ss')}}
|
||||
<i class="el-icon-video-camera" />
|
||||
{{ moment(item.startTime).format('HH:mm:ss') }}-{{ moment(item.endTime).format('HH:mm:ss') }}
|
||||
</el-tag>
|
||||
<el-tag v-if="chooseFile === item" type="danger" >
|
||||
<i class="el-icon-video-camera" ></i>
|
||||
{{ moment(item.startTime).format('HH:mm:ss')}}-{{ moment(item.endTime).format('HH:mm:ss')}}
|
||||
<el-tag v-if="chooseFile === item" type="danger">
|
||||
<i class="el-icon-video-camera" />
|
||||
{{ moment(item.startTime).format('HH:mm:ss') }}-{{ moment(item.endTime).format('HH:mm:ss') }}
|
||||
</el-tag>
|
||||
<i style="color: #409EFF;margin-left: 5px;" class="el-icon-download" @click="downloadRecord(item)" ></i>
|
||||
<i style="color: #409EFF;margin-left: 5px;" class="el-icon-download" @click="downloadRecord(item)" />
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div size="mini" v-if="detailFiles.length ==0" class="record-list-no-val" >暂无数据</div>
|
||||
<div v-if="detailFiles.length ==0" size="mini" class="record-list-no-val">暂无数据</div>
|
||||
</div>
|
||||
|
||||
</el-aside>
|
||||
<el-main style="padding-bottom: 10px;">
|
||||
<div class="playBox" :style="playerStyle">
|
||||
<player ref="recordVideoPlayer"
|
||||
:videoUrl="videoUrl"
|
||||
:error="videoError"
|
||||
:message="videoError"
|
||||
:hasAudio="hasAudio"
|
||||
style="max-height: 100%"
|
||||
fluent autoplay live ></player>
|
||||
<player
|
||||
ref="recordVideoPlayer"
|
||||
:video-url="videoUrl"
|
||||
:error="videoError"
|
||||
:message="videoError"
|
||||
:has-audio="hasAudio"
|
||||
style="max-height: 100%"
|
||||
fluent
|
||||
autoplay
|
||||
live
|
||||
/>
|
||||
</div>
|
||||
<div class="player-option-box">
|
||||
<div>
|
||||
<el-button-group >
|
||||
<el-button-group>
|
||||
<el-time-picker
|
||||
v-model="timeRange"
|
||||
size="mini"
|
||||
is-range
|
||||
align="left"
|
||||
v-model="timeRange"
|
||||
value-format="yyyy-MM-dd HH:mm:ss"
|
||||
range-separator="至"
|
||||
start-placeholder="开始时间"
|
||||
end-placeholder="结束时间"
|
||||
placeholder="选择时间范围"
|
||||
@change="timePickerChange"
|
||||
placeholder="选择时间范围">
|
||||
</el-time-picker>
|
||||
/>
|
||||
</el-button-group>
|
||||
|
||||
<el-button-group >
|
||||
<el-button size="mini" class="iconfont icon-zanting" title="开始" @click="control(0, 0)"></el-button>
|
||||
<el-button size="mini" class="iconfont icon-kaishi" title="暂停" @click="control(1, 0)"></el-button>
|
||||
<el-button size="mini" class="iconfont icon-stop" title="结束" @click="control(2, 0)"></el-button>
|
||||
<el-dropdown size="mini" title="播放倍速" @command="scale">
|
||||
<el-button-group>
|
||||
<el-button size="mini" class="iconfont icon-zanting" title="开始" @click="control(0, 0)" />
|
||||
<el-button size="mini" class="iconfont icon-kaishi" title="暂停" @click="control(1, 0)" />
|
||||
<el-button size="mini" class="iconfont icon-stop" title="结束" @click="control(2, 0)" />
|
||||
<el-dropdown size="mini" title="播放倍速" @command="scale">
|
||||
<el-button size="mini">
|
||||
快进/快退 <i class="el-icon-arrow-down el-icon--right"></i>
|
||||
快进/快退 <i class="el-icon-arrow-down el-icon--right" />
|
||||
</el-button>
|
||||
<el-dropdown-menu slot="dropdown">
|
||||
<el-dropdown-menu slot="dropdown">
|
||||
<el-dropdown-item :command="[3, 1]">正常快进</el-dropdown-item>
|
||||
<el-dropdown-item :command="[3, 2]">2倍速快进</el-dropdown-item>
|
||||
<el-dropdown-item :command="[3, 4]">4倍速快进</el-dropdown-item>
|
||||
@@ -77,25 +81,25 @@
|
||||
<el-dropdown-item :command="[4, 16]">16倍速快退</el-dropdown-item>
|
||||
</el-dropdown-menu>
|
||||
</el-dropdown>
|
||||
<el-button size="mini" class="iconfont icon-xiazai1" title="下载选定录像" @click="downloadRecord()"></el-button>
|
||||
<el-button v-if="sliderMIn === 0 && sliderMax === 86400" size="mini" class="iconfont icon-slider" title="放大滑块" @click="setSliderFit()"></el-button>
|
||||
<el-button v-if="sliderMIn !== 0 || sliderMax !== 86400" size="mini" class="iconfont icon-slider-right" title="恢复滑块" @click="setSliderFit()"></el-button>
|
||||
<el-button size="mini" class="iconfont icon-xiazai1" title="下载选定录像" @click="downloadRecord()" />
|
||||
<el-button v-if="sliderMIn === 0 && sliderMax === 86400" size="mini" class="iconfont icon-slider" title="放大滑块" @click="setSliderFit()" />
|
||||
<el-button v-if="sliderMIn !== 0 || sliderMax !== 86400" size="mini" class="iconfont icon-slider-right" title="恢复滑块" @click="setSliderFit()" />
|
||||
</el-button-group>
|
||||
</div>
|
||||
<el-slider
|
||||
class="playtime-slider"
|
||||
v-model="playTime"
|
||||
id="playtimeSlider"
|
||||
v-model="playTime"
|
||||
class="playtime-slider"
|
||||
:disabled="detailFiles.length === 0"
|
||||
:min="sliderMIn"
|
||||
:max="sliderMax"
|
||||
:range="true"
|
||||
:format-tooltip="playTimeFormat"
|
||||
:marks="playTimeSliderMarks"
|
||||
@change="playTimeChange"
|
||||
:marks="playTimeSliderMarks">
|
||||
</el-slider>
|
||||
/>
|
||||
<div class="slider-val-box">
|
||||
<div class="slider-val" v-for="item of detailFiles" :style="'width:' + getDataWidth(item) + '%; left:' + getDataLeft(item) + '%'"></div>
|
||||
<div v-for="item of detailFiles" class="slider-val" :style="'width:' + getDataWidth(item) + '%; left:' + getDataLeft(item) + '%'" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -104,14 +108,13 @@
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
<script>
|
||||
import uiHeader from '../layout/UiHeader.vue'
|
||||
import player from './common/jessibuca.vue'
|
||||
import moment from 'moment'
|
||||
import JTDeviceService from "./service/JTDeviceService";
|
||||
import moment from 'moment'
|
||||
import JTDeviceService from './service/JTDeviceService'
|
||||
export default {
|
||||
name: 'app',
|
||||
name: 'App',
|
||||
components: {
|
||||
uiHeader, player
|
||||
},
|
||||
@@ -121,7 +124,7 @@ export default {
|
||||
channelId: this.$route.params.channelId,
|
||||
deviceService: new JTDeviceService(),
|
||||
recordsLoading: false,
|
||||
streamId: "",
|
||||
streamId: '',
|
||||
hasAudio: false,
|
||||
detailFiles: [],
|
||||
chooseDate: null,
|
||||
@@ -136,15 +139,15 @@ export default {
|
||||
sliderMax: 86400,
|
||||
autoPlay: true,
|
||||
taskUpdate: null,
|
||||
tabVal: "running",
|
||||
tabVal: 'running',
|
||||
recordListStyle: {
|
||||
height: this.winHeight + "px",
|
||||
overflow: "auto",
|
||||
margin: "10px auto 10px auto"
|
||||
height: this.winHeight + 'px',
|
||||
overflow: 'auto',
|
||||
margin: '10px auto 10px auto'
|
||||
},
|
||||
playerStyle: {
|
||||
"margin": "0 auto 20px auto",
|
||||
"height": this.winHeight + "px",
|
||||
'margin': '0 auto 20px auto',
|
||||
'height': this.winHeight + 'px'
|
||||
},
|
||||
winHeight: window.innerHeight - 240,
|
||||
playTime: null,
|
||||
@@ -152,57 +155,57 @@ export default {
|
||||
startTime: null,
|
||||
endTime: null,
|
||||
playTimeSliderMarks: {
|
||||
0: "00:00",
|
||||
3600: "01:00",
|
||||
7200: "02:00",
|
||||
10800: "03:00",
|
||||
14400: "04:00",
|
||||
18000: "05:00",
|
||||
21600: "06:00",
|
||||
25200: "07:00",
|
||||
28800: "08:00",
|
||||
32400: "09:00",
|
||||
36000: "10:00",
|
||||
39600: "11:00",
|
||||
43200: "12:00",
|
||||
46800: "13:00",
|
||||
50400: "14:00",
|
||||
54000: "15:00",
|
||||
57600: "16:00",
|
||||
61200: "17:00",
|
||||
64800: "18:00",
|
||||
68400: "19:00",
|
||||
72000: "20:00",
|
||||
75600: "21:00",
|
||||
79200: "22:00",
|
||||
82800: "23:00",
|
||||
86400: "24:00",
|
||||
},
|
||||
};
|
||||
0: '00:00',
|
||||
3600: '01:00',
|
||||
7200: '02:00',
|
||||
10800: '03:00',
|
||||
14400: '04:00',
|
||||
18000: '05:00',
|
||||
21600: '06:00',
|
||||
25200: '07:00',
|
||||
28800: '08:00',
|
||||
32400: '09:00',
|
||||
36000: '10:00',
|
||||
39600: '11:00',
|
||||
43200: '12:00',
|
||||
46800: '13:00',
|
||||
50400: '14:00',
|
||||
54000: '15:00',
|
||||
57600: '16:00',
|
||||
61200: '17:00',
|
||||
64800: '18:00',
|
||||
68400: '19:00',
|
||||
72000: '20:00',
|
||||
75600: '21:00',
|
||||
79200: '22:00',
|
||||
82800: '23:00',
|
||||
86400: '24:00'
|
||||
}
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
|
||||
},
|
||||
mounted() {
|
||||
this.recordListStyle.height = this.winHeight + "px";
|
||||
this.playerStyle["height"] = this.winHeight + "px";
|
||||
this.recordListStyle.height = this.winHeight + 'px'
|
||||
this.playerStyle['height'] = this.winHeight + 'px'
|
||||
this.chooseDate = moment().format('YYYY-MM-DD')
|
||||
this.dateChange();
|
||||
this.dateChange()
|
||||
window.addEventListener('beforeunload', this.stopPlayRecord)
|
||||
},
|
||||
destroyed() {
|
||||
this.$destroy('recordVideoPlayer');
|
||||
this.$destroy('recordVideoPlayer')
|
||||
window.removeEventListener('beforeunload', this.stopPlayRecord)
|
||||
},
|
||||
methods: {
|
||||
dateChange(){
|
||||
dateChange() {
|
||||
if (!this.chooseDate) {
|
||||
return;
|
||||
return
|
||||
}
|
||||
|
||||
this.setTime(this.chooseDate + " 00:00:00", this.chooseDate + " 23:59:59");
|
||||
this.recordsLoading = true;
|
||||
this.detailFiles = [];
|
||||
this.setTime(this.chooseDate + ' 00:00:00', this.chooseDate + ' 23:59:59')
|
||||
this.recordsLoading = true
|
||||
this.detailFiles = []
|
||||
this.$axios({
|
||||
method: 'get',
|
||||
url: '/api/jt1078/record/list',
|
||||
@@ -210,54 +213,52 @@ export default {
|
||||
phoneNumber: this.phoneNumber,
|
||||
channelId: this.channelId,
|
||||
startTime: this.startTime,
|
||||
endTime: this.endTime,
|
||||
endTime: this.endTime
|
||||
}
|
||||
}).then((res)=>{
|
||||
this.recordsLoading = false;
|
||||
if(res.data.code === 0) {
|
||||
}).then((res) => {
|
||||
this.recordsLoading = false
|
||||
if (res.data.code === 0) {
|
||||
// 处理时间信息
|
||||
this.detailFiles = res.data.data;
|
||||
}else {
|
||||
this.detailFiles = res.data.data
|
||||
} else {
|
||||
this.$message({
|
||||
showClose: true,
|
||||
message: res.data.msg,
|
||||
type: "error",
|
||||
});
|
||||
type: 'error'
|
||||
})
|
||||
}
|
||||
|
||||
}).catch((e)=> {
|
||||
this.recordsLoading = false;
|
||||
}).catch((e) => {
|
||||
this.recordsLoading = false
|
||||
// that.videoHistory.searchHistoryResult = falsificationData.recordData;
|
||||
});
|
||||
})
|
||||
},
|
||||
moment: function (v) {
|
||||
moment: function(v) {
|
||||
return moment(v)
|
||||
},
|
||||
setTime: function (startTime, endTime){
|
||||
this.startTime = startTime;
|
||||
this.endTime = endTime;
|
||||
let start = (new Date(this.startTime).getTime() - new Date(this.chooseDate + " 00:00:00").getTime())/1000;
|
||||
let end = (new Date(this.endTime).getTime() - new Date(this.chooseDate + " 00:00:00").getTime())/1000;
|
||||
setTime: function(startTime, endTime) {
|
||||
this.startTime = startTime
|
||||
this.endTime = endTime
|
||||
const start = (new Date(this.startTime).getTime() - new Date(this.chooseDate + ' 00:00:00').getTime()) / 1000
|
||||
const end = (new Date(this.endTime).getTime() - new Date(this.chooseDate + ' 00:00:00').getTime()) / 1000
|
||||
console.log(start)
|
||||
console.log(end)
|
||||
this.playTime = [start, end];
|
||||
this.timeRange = [startTime, endTime];
|
||||
this.playTime = [start, end]
|
||||
this.timeRange = [startTime, endTime]
|
||||
},
|
||||
videoError: function (e) {
|
||||
console.log("播放器错误:" + JSON.stringify(e));
|
||||
videoError: function(e) {
|
||||
console.log('播放器错误:' + JSON.stringify(e))
|
||||
},
|
||||
checkedFile(file){
|
||||
this.chooseFile = file;
|
||||
this.setTime(file.startTime, file.endTime);
|
||||
checkedFile(file) {
|
||||
this.chooseFile = file
|
||||
this.setTime(file.startTime, file.endTime)
|
||||
// 开始回放
|
||||
this.playRecord()
|
||||
},
|
||||
playRecord: function () {
|
||||
|
||||
if (this.streamId !== "") {
|
||||
this.stopPlayRecord(()=> {
|
||||
this.streamId = "";
|
||||
this.playRecord();
|
||||
playRecord: function() {
|
||||
if (this.streamId !== '') {
|
||||
this.stopPlayRecord(() => {
|
||||
this.streamId = ''
|
||||
this.playRecord()
|
||||
})
|
||||
} else {
|
||||
this.$axios({
|
||||
@@ -273,35 +274,35 @@ export default {
|
||||
playbackType: 0,
|
||||
playbackSpeed: 0
|
||||
}
|
||||
}).then((res)=> {
|
||||
}).then((res) => {
|
||||
if (res.data.code === 0) {
|
||||
this.streamInfo = res.data.data;
|
||||
this.app = this.streamInfo.app;
|
||||
this.streamId = this.streamInfo.stream;
|
||||
this.mediaServerId = this.streamInfo.mediaServerId;
|
||||
this.ssrc = this.streamInfo.ssrc;
|
||||
this.videoUrl = this.getUrlByStreamInfo();
|
||||
this.streamInfo = res.data.data
|
||||
this.app = this.streamInfo.app
|
||||
this.streamId = this.streamInfo.stream
|
||||
this.mediaServerId = this.streamInfo.mediaServerId
|
||||
this.ssrc = this.streamInfo.ssrc
|
||||
this.videoUrl = this.getUrlByStreamInfo()
|
||||
this.hasAudio = this.streamInfo.tracks && this.streamInfo.tracks.length > 1
|
||||
}else {
|
||||
} else {
|
||||
this.$message({
|
||||
showClose: true,
|
||||
message: res.data.msg,
|
||||
type: "error",
|
||||
});
|
||||
type: 'error'
|
||||
})
|
||||
}
|
||||
});
|
||||
})
|
||||
}
|
||||
},
|
||||
gbPlay(){
|
||||
console.log('前端控制:播放');
|
||||
gbPlay() {
|
||||
console.log('前端控制:播放')
|
||||
this.$axios({
|
||||
method: 'get',
|
||||
url: '/api/playback/resume/' + this.streamId
|
||||
}).then((res)=> {
|
||||
this.$refs["recordVideoPlayer"].play(this.videoUrl)
|
||||
});
|
||||
}).then((res) => {
|
||||
this.$refs['recordVideoPlayer'].play(this.videoUrl)
|
||||
})
|
||||
},
|
||||
control(command, playbackSpeed, time){
|
||||
control(command, playbackSpeed, time) {
|
||||
this.$axios({
|
||||
method: 'get',
|
||||
url: '/api/jt1078/playback/control',
|
||||
@@ -312,44 +313,44 @@ export default {
|
||||
playbackSpeed: playbackSpeed,
|
||||
time: time
|
||||
}
|
||||
}).then(function (res) {});
|
||||
}).then(function(res) {})
|
||||
},
|
||||
scale(command){
|
||||
scale(command) {
|
||||
this.control(command[0], command[1])
|
||||
},
|
||||
downloadRecord: function (row) {
|
||||
let baseUrl = window.baseUrl ? window.baseUrl : "";
|
||||
let downloadFile = ((process.env.NODE_ENV === 'development') ? process.env.BASE_API : baseUrl) +
|
||||
`/api/jt1078/playback/download?phoneNumber=${this.phoneNumber}&channelId=${this.channelId}&startTime=${row.startTime}&endTime=${row.endTime}`+
|
||||
downloadRecord: function(row) {
|
||||
const baseUrl = window.baseUrl ? window.baseUrl : ''
|
||||
const downloadFile = ((process.env.NODE_ENV === 'development') ? process.env.BASE_API : baseUrl) +
|
||||
`/api/jt1078/playback/download?phoneNumber=${this.phoneNumber}&channelId=${this.channelId}&startTime=${row.startTime}&endTime=${row.endTime}` +
|
||||
`&alarmSign=${row.alarmSign}&mediaType=${row.mediaType}&streamType=${row.streamType}&storageType=${row.storageType}`
|
||||
console.log(downloadFile)
|
||||
let x = new XMLHttpRequest();
|
||||
x.open("GET", downloadFile, true);
|
||||
x.responseType = 'blob';
|
||||
x.onload=(e)=> {
|
||||
let url = window.URL.createObjectURL(x.response)
|
||||
let a = document.createElement('a');
|
||||
const x = new XMLHttpRequest()
|
||||
x.open('GET', downloadFile, true)
|
||||
x.responseType = 'blob'
|
||||
x.onload = (e) => {
|
||||
const url = window.URL.createObjectURL(x.response)
|
||||
const a = document.createElement('a')
|
||||
a.href = url
|
||||
a.download = this.phoneNumber + "-" + this.channelId + ".mp4";
|
||||
a.download = this.phoneNumber + '-' + this.channelId + '.mp4'
|
||||
a.click()
|
||||
}
|
||||
x.send();
|
||||
x.send()
|
||||
},
|
||||
stopDownloadRecord: function (callback) {
|
||||
this.$refs["recordVideoPlayer"].pause();
|
||||
this.videoUrl = '';
|
||||
stopDownloadRecord: function(callback) {
|
||||
this.$refs['recordVideoPlayer'].pause()
|
||||
this.videoUrl = ''
|
||||
this.$axios({
|
||||
method: 'get',
|
||||
url: '/api/gb_record/download/stop/' + this.deviceId + "/" + this.channelId+ "/" + this.streamId
|
||||
}).then((res)=> {
|
||||
url: '/api/gb_record/download/stop/' + this.deviceId + '/' + this.channelId + '/' + this.streamId
|
||||
}).then((res) => {
|
||||
if (callback) callback(res)
|
||||
});
|
||||
})
|
||||
},
|
||||
stopPlayRecord: function (callback) {
|
||||
console.log("停止录像回放")
|
||||
if (this.streamId !== "") {
|
||||
this.$refs["recordVideoPlayer"].pause();
|
||||
this.videoUrl = '';
|
||||
stopPlayRecord: function(callback) {
|
||||
console.log('停止录像回放')
|
||||
if (this.streamId !== '') {
|
||||
this.$refs['recordVideoPlayer'].pause()
|
||||
this.videoUrl = ''
|
||||
this.$axios({
|
||||
method: 'get',
|
||||
url: '/api/jt1078/playback/stop/',
|
||||
@@ -358,98 +359,96 @@ export default {
|
||||
channelId: this.channelId,
|
||||
streamId: this.streamId
|
||||
}
|
||||
}).then(function (res) {
|
||||
}).then(function(res) {
|
||||
if (callback) callback()
|
||||
});
|
||||
})
|
||||
}
|
||||
|
||||
},
|
||||
getDataWidth(item){
|
||||
let timeForFile = this.getTimeForFile(item);
|
||||
let result = (timeForFile[2])/((this.sliderMax - this.sliderMIn)*1000)
|
||||
return result*100
|
||||
getDataWidth(item) {
|
||||
const timeForFile = this.getTimeForFile(item)
|
||||
const result = (timeForFile[2]) / ((this.sliderMax - this.sliderMIn) * 1000)
|
||||
return result * 100
|
||||
},
|
||||
getDataLeft(item){
|
||||
let timeForFile = this.getTimeForFile(item);
|
||||
let differenceTime = timeForFile[0].getTime() - new Date(this.chooseDate + " 00:00:00").getTime()
|
||||
return parseFloat((differenceTime - this.sliderMIn * 1000)/((this.sliderMax - this.sliderMIn)*1000))*100 ;
|
||||
getDataLeft(item) {
|
||||
const timeForFile = this.getTimeForFile(item)
|
||||
const differenceTime = timeForFile[0].getTime() - new Date(this.chooseDate + ' 00:00:00').getTime()
|
||||
return parseFloat((differenceTime - this.sliderMIn * 1000) / ((this.sliderMax - this.sliderMIn) * 1000)) * 100
|
||||
},
|
||||
getUrlByStreamInfo(){
|
||||
if (location.protocol === "https:") {
|
||||
this.videoUrl = this.streamInfo["wss_flv"]
|
||||
}else {
|
||||
this.videoUrl = this.streamInfo["ws_flv"]
|
||||
getUrlByStreamInfo() {
|
||||
if (location.protocol === 'https:') {
|
||||
this.videoUrl = this.streamInfo['wss_flv']
|
||||
} else {
|
||||
this.videoUrl = this.streamInfo['ws_flv']
|
||||
}
|
||||
return this.videoUrl;
|
||||
|
||||
return this.videoUrl
|
||||
},
|
||||
timePickerChange: function (val){
|
||||
timePickerChange: function(val) {
|
||||
this.setTime(val[0], val[1])
|
||||
},
|
||||
playTimeChange(val){
|
||||
playTimeChange(val) {
|
||||
console.log(val)
|
||||
|
||||
let startTimeStr = moment(new Date(this.chooseDate + " 00:00:00").getTime() + val[0]*1000).format("YYYY-MM-DD HH:mm:ss");
|
||||
let endTimeStr = moment(new Date(this.chooseDate + " 00:00:00").getTime() + val[1]*1000).format("YYYY-MM-DD HH:mm:ss");
|
||||
const startTimeStr = moment(new Date(this.chooseDate + ' 00:00:00').getTime() + val[0] * 1000).format('YYYY-MM-DD HH:mm:ss')
|
||||
const endTimeStr = moment(new Date(this.chooseDate + ' 00:00:00').getTime() + val[1] * 1000).format('YYYY-MM-DD HH:mm:ss')
|
||||
|
||||
this.setTime(startTimeStr, endTimeStr)
|
||||
|
||||
this.playRecord();
|
||||
this.playRecord()
|
||||
},
|
||||
setSliderFit() {
|
||||
if (this.sliderMIn === 0 && this.sliderMax === 86400) {
|
||||
if (this.detailFiles.length > 0){
|
||||
let timeForFile = this.getTimeForFile(this.detailFiles[0]);
|
||||
let lastTimeForFile = this.getTimeForFile(this.detailFiles[this.detailFiles.length - 1]);
|
||||
let timeNum = timeForFile[0].getTime() - new Date(this.chooseDate + " " + "00:00:00").getTime()
|
||||
let lastTimeNum = lastTimeForFile[1].getTime() - new Date(this.chooseDate + " " + "00:00:00").getTime()
|
||||
if (this.detailFiles.length > 0) {
|
||||
const timeForFile = this.getTimeForFile(this.detailFiles[0])
|
||||
const lastTimeForFile = this.getTimeForFile(this.detailFiles[this.detailFiles.length - 1])
|
||||
const timeNum = timeForFile[0].getTime() - new Date(this.chooseDate + ' ' + '00:00:00').getTime()
|
||||
const lastTimeNum = lastTimeForFile[1].getTime() - new Date(this.chooseDate + ' ' + '00:00:00').getTime()
|
||||
|
||||
this.playTime = parseInt(timeNum/1000)
|
||||
this.sliderMIn = parseInt(timeNum/1000 - timeNum/1000%(60*60))
|
||||
this.sliderMax = parseInt(lastTimeNum/1000 - lastTimeNum/1000%(60*60)) + 60*60
|
||||
this.playTime = parseInt(timeNum / 1000)
|
||||
this.sliderMIn = parseInt(timeNum / 1000 - timeNum / 1000 % (60 * 60))
|
||||
this.sliderMax = parseInt(lastTimeNum / 1000 - lastTimeNum / 1000 % (60 * 60)) + 60 * 60
|
||||
|
||||
this.playTime = [this.sliderMIn, this.sliderMax];
|
||||
this.playTime = [this.sliderMIn, this.sliderMax]
|
||||
}
|
||||
}else {
|
||||
this.sliderMIn = 0;
|
||||
this.sliderMax = 86400;
|
||||
} else {
|
||||
this.sliderMIn = 0
|
||||
this.sliderMax = 86400
|
||||
}
|
||||
},
|
||||
getTimeForFile(file){
|
||||
let startTime = new Date(file.startTime);
|
||||
let endTime = new Date(file.endTime);
|
||||
return [startTime, endTime, endTime.getTime() - startTime.getTime()];
|
||||
getTimeForFile(file) {
|
||||
const startTime = new Date(file.startTime)
|
||||
const endTime = new Date(file.endTime)
|
||||
return [startTime, endTime, endTime.getTime() - startTime.getTime()]
|
||||
},
|
||||
playTimeFormat(val){
|
||||
let h = parseInt(val/3600);
|
||||
let m = parseInt((val - h*3600)/60);
|
||||
let s = parseInt(val - h*3600 - m*60);
|
||||
playTimeFormat(val) {
|
||||
const h = parseInt(val / 3600)
|
||||
const m = parseInt((val - h * 3600) / 60)
|
||||
const s = parseInt(val - h * 3600 - m * 60)
|
||||
|
||||
let hStr = h;
|
||||
let mStr = m;
|
||||
let sStr = s;
|
||||
let hStr = h
|
||||
let mStr = m
|
||||
let sStr = s
|
||||
if (h < 10) {
|
||||
hStr = "0" + hStr;
|
||||
hStr = '0' + hStr
|
||||
}
|
||||
if (m < 10) {
|
||||
mStr = "0" + mStr;s
|
||||
mStr = '0' + mStr; s
|
||||
}
|
||||
if (s < 10) {
|
||||
sStr = "0" + sStr;
|
||||
sStr = '0' + sStr
|
||||
}
|
||||
return hStr + ":" + mStr + ":" + sStr
|
||||
return hStr + ':' + mStr + ':' + sStr
|
||||
},
|
||||
goBack(){
|
||||
goBack() {
|
||||
// 如果正在进行录像回放则,发送停止
|
||||
if (this.streamId !== "") {
|
||||
this.stopPlayRecord(()=> {
|
||||
this.streamId = "";
|
||||
if (this.streamId !== '') {
|
||||
this.stopPlayRecord(() => {
|
||||
this.streamId = ''
|
||||
})
|
||||
}
|
||||
window.history.go(-1);
|
||||
},
|
||||
window.history.go(-1)
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
|
||||
Reference in New Issue
Block a user