From 998cff2189462a97cb8d6e1e7b9f88d9ecca524b Mon Sep 17 00:00:00 2001
From: heyujie <516346543@qq.com>
Date: 星期四, 14 七月 2022 14:34:36 +0800
Subject: [PATCH] add device clusterpwd change to authPwd
---
src/views/hashrate/CameraManage/CameraRules/components/CameraBox.vue | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/src/views/hashrate/CameraManage/CameraRules/components/CameraBox.vue b/src/views/hashrate/CameraManage/CameraRules/components/CameraBox.vue
index 77bed71..1247b70 100644
--- a/src/views/hashrate/CameraManage/CameraRules/components/CameraBox.vue
+++ b/src/views/hashrate/CameraManage/CameraRules/components/CameraBox.vue
@@ -15,7 +15,7 @@
</div>
<div class="body">
- <div class="row">
+ <div class="row" v-if="camera.analytics">
<div class="label">澶勭悊鏂瑰紡:</div>
<div
class="button pollingBtn"
@@ -36,10 +36,12 @@
<div class="label">鍒嗚鲸鐜�:</div>
<div class="data">
{{
- camera.camearInfo.resolution_width == 0 ||
- camera.camearInfo.resolution_height == 0
+ camera.camearInfo.resolutionWidth == 0 ||
+ camera.camearInfo.resolutionHeight == 0 ||
+ !camera.camearInfo.resolutionHeight ||
+ !camera.camearInfo.resolutionWidth
? "鏈満鍒嗚鲸鐜�"
- : `${camera.camearInfo.resolution_width} * ${camera.camearInfo.resolution_height}`
+ : `${camera.camearInfo.resolutionWidth} * ${camera.camearInfo.resolutionHeight}`
}}
</div>
</div>
--
Gitblit v1.8.0