Browse Source

视频相关

Lita-Tako 4 months ago
parent
commit
02967f94eb
2 changed files with 4 additions and 4 deletions
  1. 2 2
      src/components/video/Live.vue
  2. 2 2
      src/components/video/Replay.vue

+ 2 - 2
src/components/video/Live.vue

@@ -280,8 +280,8 @@
280
 		console.log('选择摄像头', camera)
280
 		console.log('选择摄像头', camera)
281
 		const { cameraIndexCode } = camera
281
 		const { cameraIndexCode } = camera
282
 		getPreview({ cameraIndexCode, protocol: 'WS' }).then((resp) => {
282
 		getPreview({ cameraIndexCode, protocol: 'WS' }).then((resp) => {
283
-			if (!resp || !resp.data || !resp.data.url) return message.error('无法获取视频地址')
284
-			const url = resp.data.url
283
+			if (!resp || !resp.url) return message.error('无法获取视频地址')
284
+			const url = resp.url
285
 			const exists = Object.values(videoMap).findIndex((u) => u.url === url)
285
 			const exists = Object.values(videoMap).findIndex((u) => u.url === url)
286
 			if (exists >= 0) {
286
 			if (exists >= 0) {
287
 				return message.warning(`该视频已经在 ${exists + 1} 窗口播放`)
287
 				return message.warning(`该视频已经在 ${exists + 1} 窗口播放`)

+ 2 - 2
src/components/video/Replay.vue

@@ -181,8 +181,8 @@
181
 		}
181
 		}
182
 		const { cameraIndexCode } = camera
182
 		const { cameraIndexCode } = camera
183
 		getPlaybackVideo({ cameraIndexCode }).then((resp) => {
183
 		getPlaybackVideo({ cameraIndexCode }).then((resp) => {
184
-			if (!resp || !resp.data || !resp.data.url) return message.error('无法获取视频地址')
185
-			const url = resp.data.url
184
+			if (!resp || !resp.url) return message.error('无法获取视频地址')
185
+			const url = resp.url
186
 			if (url) {
186
 			if (url) {
187
 				const [realUrl, params] = url.split('?')
187
 				const [realUrl, params] = url.split('?')
188
 				const [startTime, endTime] = date.value
188
 				const [startTime, endTime] = date.value