From c77c1a956c0c39575eb6d9a86cb8c137bb8126c8 Mon Sep 17 00:00:00 2001 From: 648540858 <648540858@qq.com> Date: 星期一, 25 七月 2022 11:17:46 +0800 Subject: [PATCH] 修复推流推流状态提示 --- web_src/src/components/PushVideoList.vue | 15 ++++++++++----- 1 files changed, 10 insertions(+), 5 deletions(-) diff --git a/web_src/src/components/PushVideoList.vue b/web_src/src/components/PushVideoList.vue index 6a415f7..866c808 100644 --- a/web_src/src/components/PushVideoList.vue +++ b/web_src/src/components/PushVideoList.vue @@ -69,7 +69,7 @@ </el-table-column> <el-table-column label="鏈钩鍙版帹娴�" min-width="100"> <template slot-scope="scope"> - {{scope.row.pushIng && !!!scope.row.serverId ? '鏄�' : '鍚�' }} + {{scope.row.pushIng && !!scope.row.self ? '鏄�' : '鍚�' }} </template> </el-table-column> @@ -202,10 +202,15 @@ } }).then(function (res) { that.getListLoading = false; - that.$refs.devicePlayer.openDialog("streamPlay", null, null, { - streamInfo: res.data.data, - hasAudio: true - }); + if (res.data.code === 0 ) { + that.$refs.devicePlayer.openDialog("streamPlay", null, null, { + streamInfo: res.data.data, + hasAudio: true + }); + }else { + that.$message.error(res.data.msg); + } + }).catch(function (error) { console.error(error); that.getListLoading = false; -- Gitblit v1.8.0