From 7055c53192aadf6af9444c81373ab256e760b808 Mon Sep 17 00:00:00 2001 From: hexq <hexiaoqu@visioninsight.com> Date: 星期六, 20 一月 2024 10:26:49 +0800 Subject: [PATCH] BUGFIX:回放时,优先从SDP中提取channelId,兼容从Subject无法提取到channelId的问题 --- web_src/src/components/DeviceList.vue | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web_src/src/components/DeviceList.vue b/web_src/src/components/DeviceList.vue old mode 100644 new mode 100755 index bff0d1d..5375e5e --- a/web_src/src/components/DeviceList.vue +++ b/web_src/src/components/DeviceList.vue @@ -41,8 +41,8 @@ <el-table-column label="鐘舵��" min-width="120"> <template slot-scope="scope"> <div slot="reference" class="name-wrapper"> - <el-tag size="medium" v-if="scope.row.online == 1">鍦ㄧ嚎</el-tag> - <el-tag size="medium" type="info" v-if="scope.row.online == 0">绂荤嚎</el-tag> + <el-tag size="medium" v-if="scope.row.onLine">鍦ㄧ嚎</el-tag> + <el-tag size="medium" type="info" v-if="!scope.row.onLine">绂荤嚎</el-tag> </div> </template> </el-table-column> -- Gitblit v1.8.0