...
|
...
|
@@ -3,8 +3,8 @@ |
|
|
<img src="../src/style/img/fault/dialtest.gif">
|
|
|
<h3 style="margin-left: 10px;color: #666666;font-size: 18px">业务拨测</h3>
|
|
|
<div style="width: calc(100% - 200px);line-height: 54px" class="align-right">
|
|
|
<a class="m-r-20" @click="">更多</a>
|
|
|
<a v-model="cardName" @click="openOrCloseDialtest(dialTest.faultFixInfoList)">{{cardName}}</a>
|
|
|
<a class="m-r-20" v-if="card && card.length > 0" @click="openMoreDialog">更多</a>
|
|
|
<a v-model="cardName" v-if="card && card.length > 0" @click="openOrCloseDialtest(dialTest.faultFixInfoList)">{{cardName}}</a>
|
|
|
</div>
|
|
|
</div>
|
|
|
<el-divider/>
|
...
|
...
|
@@ -15,32 +15,33 @@ |
|
|
<div style="width: 230px;margin-left: 20px;display: flex;align-self: center;color: #666666;font-size: 16px">
|
|
|
<img src="../src/style/img/fault/disRes.png">
|
|
|
<span style="margin: 0px 6px 0px 6px;width: 105px">诊断业务场景</span>
|
|
|
<h>{{dialTest && dialTest.diagnosticResources ?dialTest.diagnosticResources:0}}</h>
|
|
|
|
|
|
<h class="text-link">{{getFaultItemValue(dialTest,'diagnosticResources')}}</h>
|
|
|
</div>
|
|
|
|
|
|
|
<div style="width: 200px;margin-left: 20px;display: flex;align-self: center;color: #666666;font-size: 16px">
|
|
|
<img src="../src/style/img/fault/disKpi.png">
|
|
|
<span style="margin: 0px 6px 0px 6px;width: 105px">诊断指标</span>
|
|
|
<h>{{dialTest && dialTest.diagnosticIndicators ?dialTest.diagnosticIndicators:0}}</h>
|
|
|
<h class="text-link">{{ getFaultItemValue(dialTest,'diagnosticIndicators') }}</h>
|
|
|
</div>
|
|
|
|
|
|
|
<div style="width: 200px;margin-left: 20px;display: flex;align-self: center;color: #666666;font-size: 16px">
|
|
|
<img src="../src/style/img/fault/disItem.png">
|
|
|
<span style="margin: 0px 6px 0px 6px;width: 105px"> 诊断项</span>
|
|
|
<h>{{dialTest && dialTest.diagnosticItem ?dialTest.diagnosticItem:0}}</h>
|
|
|
<h class="text-link">{{ getFaultItemValue(dialTest,'diagnosticItem') }}</h>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div style="text-align: left;display: flex;margin-top: 10px;">
|
|
|
<div style="width: 230px;margin-left: 20px;display: flex;align-self: center;color: #75af49;">
|
|
|
<img src="../src/style/img/fault/success.png" style="width: 22px;height: 22px;">
|
|
|
<span style="margin: 0px 6px 0px 6px;width: 105px;font-size: 16px">正常</span>
|
|
|
<h style="font-size: 24px">{{dialTest && dialTest.normal ?dialTest.normal:0}}</h>
|
|
|
<h class="text-link" style="font-size: 24px">{{ getFaultItemValue(dialTest,'normal')}}</h>
|
|
|
</div>
|
|
|
|
|
|
|
<div style="width: 200px;margin-left: 20px;display: flex;align-self: center;color: #febb1a;" @click="openAlarm">
|
|
|
<img src="../src/style/img/fault/error.png" style="width: 22px;height: 22px;">
|
|
|
<span style="margin: 0px 6px 0px 6px;width: 105px;font-size: 16px"> 异常</span>
|
|
|
<h style="font-size: 24px">{{dialTest && dialTest.abnormal ?dialTest.abnormal:0}}</h>
|
|
|
<h class="text-link" style="font-size: 24px">{{ getFaultItemValue(dialTest,'abnormal') }}</h>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
...
|
...
|
|