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; + } + } } } }