From 4367edeb081c83fd327cd51aeb83614dab68fd27 Mon Sep 17 00:00:00 2001 From: Jack <1638169491@qq.com> Date: Fri, 19 Aug 2022 11:48:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B9=96=E9=87=8C=E5=A4=A7=E5=B1=8F(=E6=95=B0?= =?UTF-8?q?=E5=AD=97=E5=B7=A5=E5=9C=B0)=EF=BC=9A=E5=AE=8C=E6=88=90?= =?UTF-8?q?=E5=A1=94=E5=90=8A=E5=BC=B9=E6=A1=86=E8=AE=BE=E5=A4=87=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E5=B8=83=E5=B1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dataBoard/digitalSite/index.vue | 111 ++++++------------ .../digitalSite/components/TowerDialog.vue | 27 ++++- 2 files changed, 60 insertions(+), 78 deletions(-) diff --git a/src/views/projectAdmin/dataBoard/digitalSite/index.vue b/src/views/projectAdmin/dataBoard/digitalSite/index.vue index ae66e4a0..68acf2b6 100644 --- a/src/views/projectAdmin/dataBoard/digitalSite/index.vue +++ b/src/views/projectAdmin/dataBoard/digitalSite/index.vue @@ -391,34 +391,33 @@
- - {{ $t('message.dataBoard.devInfo') }} + {{ $t('message.dataBoard.devInfo') }}

{{ $t('message.dataBoard.devName2') + ':' }} - {{ towerBasicInfo.tower ? towerBasicInfo.tower.devName : '--' }} + {{ (towerBasicInfo.tower || {}).devName || '--' }}

{{ $t('message.dataBoard.devCode') + ':' }} - {{ towerBasicInfo.tower ? towerBasicInfo.tower.devSn : '--' }} + {{ (towerBasicInfo.tower || {}).devSn || '--' }}

{{ $t('message.dataBoard.devAQ') + ':' }} - {{ towerBasicInfo.tower ? towerBasicInfo.tower.registNo : '--' }} + {{ (towerBasicInfo.tower || {}).registNo || '--' }}

{{ $t('message.dataBoard.manufacturer') + ':' }} - {{ towerBasicInfo.tower ? towerBasicInfo.tower.factoryName : '--' }} + {{ (towerBasicInfo.tower || {}).factoryName || '--' }}

{{ $t('message.dataBoard.mainContractor') + ':' }} - {{ towerBasicInfo.tower ? towerBasicInfo.tower.generalContractorsName : '--' }} + {{ (towerBasicInfo.tower || {}).generalContractorsName || '--' }}

@@ -429,12 +428,7 @@ -
+
-

+

{{ afterAnalysisDataInfo.alarmNum }}

@@ -581,12 +571,7 @@

-
+
{{ $t('message.dataBoard.boltMonitoring') + '-' + $t('message.dataBoard.bolt') }}{{ item.nutNo }} @@ -688,7 +673,7 @@

@@ -723,7 +708,7 @@ {{ $t('message.dataBoard.forearmLong') + ':' + $t('message.dataBoard.forearmInfo') }}

- {{ towerBasicInfo.tower ? towerBasicInfo.tower.forearmLength : '--' }} + {{ (towerBasicInfo.tower || {}).forearmLength || '--' }} m

@@ -741,7 +726,7 @@

- {{ towerBasicInfo.tower ? towerBasicInfo.tower.towerHeight : '--' }} + {{ (towerBasicInfo.tower || {}).towerHeight || '--' }} m

@@ -759,7 +744,7 @@

- {{ towerCurrentInfo ? towerCurrentInfo.loading : '--' }} kg + {{ (towerCurrentInfo || {}).loading || '--' }} kg

@@ -798,13 +783,9 @@

- {{ towerCurrentInfo ? towerCurrentInfo.height : '--' }} m + {{ (towerCurrentInfo || {}).height || '--' }} m

-

+

- {{ towerCurrentInfo ? towerCurrentInfo.angle : '--' }} ° + {{ (towerCurrentInfo || {}).angle || '--' }} °

@@ -836,8 +817,7 @@

- {{ towerCurrentInfo ? towerCurrentInfo.torqueRatio : '--' }} - % + {{ (towerCurrentInfo || {}).torqueRatio || '--' }}%

@@ -854,7 +834,7 @@

- {{ towerCurrentInfo ? towerCurrentInfo.loadRatio : '--' }}% + {{ (towerCurrentInfo || {}).loadRatio || '--' }}%

@@ -887,7 +867,7 @@ {{ $t('message.dataBoard.forearmLong') + ':' + $t('message.dataBoard.forearmInfo') }}
- {{ towerBasicInfo.tower ? towerBasicInfo.tower.forearmLength : '--' }} + {{ (towerBasicInfo.tower || {}).forearmLength || '--' }} m

@@ -905,7 +885,7 @@ - {{ towerBasicInfo.tower ? towerBasicInfo.tower.towerHeight : '--' }} + {{ (towerBasicInfo.tower || {}).towerHeight || '--' }} m

@@ -923,7 +903,7 @@ - {{ towerCurrentInfo ? towerCurrentInfo.loading : '--' }} + {{ (towerCurrentInfo || {}).loading || '--' }} kg

- {{ towerCurrentInfo ? towerCurrentInfo.ranger : '--' }} m + {{ (towerCurrentInfo || {}).ranger || '--' }} m

@@ -961,7 +941,7 @@ - {{ towerCurrentInfo ? towerCurrentInfo.height : '--' }} m + {{ (towerCurrentInfo || {}).height || '--' }} m

@@ -999,7 +979,7 @@ - {{ towerCurrentInfo ? towerCurrentInfo.torqueRatio : '--' }} + {{ (towerCurrentInfo || {}).torqueRatio || '--' }} %

@@ -1017,18 +997,11 @@ - {{ towerCurrentInfo ? towerCurrentInfo.loadRatio : '--' }}% + {{ (towerCurrentInfo || {}).loadRatio || '--' }}%

-
+
@@ -1067,15 +1040,10 @@ >
-
+

- {{ countDown }}s + {{ countDown }} + s

@@ -1364,22 +1332,13 @@ @@ -81,7 +95,9 @@ export default { background-size: 100% 100%; z-index: 3; display: flex; - flex-direction: column; + .left { + width: 440px; + } .card { .card-title { margin-bottom: 20px; @@ -99,6 +115,13 @@ export default { background-color: #6ce9f0; } } + .device { + padding-left: 14px; + height: 100px; + .info-item { + margin-bottom: 10px; + } + } } } }