From f635f9c3003ae10f7be8e934b81bc480c82617ba Mon Sep 17 00:00:00 2001 From: xiaoxie <hotcoffie@163.com> Date: 星期三, 20 四月 2022 13:56:30 +0800 Subject: [PATCH] 修复录像列表:实测部分厂家(TP-Link IPC43AW)录像列表接口,返回的xml报文数据中有多余的空格,导致解析String为Integer失败,增加trim修复这个问题 --- web_src/src/components/live.vue | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/web_src/src/components/live.vue b/web_src/src/components/live.vue index 3c91058..8257527 100644 --- a/web_src/src/components/live.vue +++ b/web_src/src/components/live.vue @@ -33,7 +33,7 @@ > <div v-if="!videoUrl[i-1]" style="color: #ffffff;font-size: 30px;font-weight: bold;">{{i}}</div> <player v-else :ref="'player'+i" :videoUrl="videoUrl[i-1]" fluent autoplay :height="true" - :idx="'player'+i" @screenshot="shot" @destroy="destroy"></player> + :containerId="'player'+i" @screenshot="shot" @destroy="destroy"></player> <!-- <player v-else ref="'player'+i" :idx="'player'+i" :visible.sync="showVideoDialog" :videoUrl="videoUrl[i-1]" :height="true" :hasAudio="hasAudio" fluent autoplay live ></player> --> </div> </div> -- Gitblit v1.8.0