...
|
...
|
@@ -4,7 +4,7 @@ |
|
|
<h3 style="margin-left: 10px;color: #666666;font-size: 18px">APM</h3>
|
|
|
<div style="width: calc(100% - 170px);line-height: 54px;font-size: 14px" class="align-right">
|
|
|
<a class="m-r-20" s @click="">更多</a>
|
|
|
<a v-model="cardName" @click="openOrCloseApm(dialTest.faultFixInfoList)">{{cardName}}</a>
|
|
|
<a v-model="cardName" @click="openOrCloseApm()">{{cardName}}</a>
|
|
|
</div>
|
|
|
</div>
|
|
|
<el-divider/>
|
...
|
...
|
@@ -55,32 +55,37 @@ |
|
|
</div>
|
|
|
<div v-if="cardOpen"
|
|
|
style="margin-top:20px;background-color: whitesmoke;display: flex;justify-content: flex-start;flex-wrap: wrap;padding: 26px 26px 0px 26px;">
|
|
|
<div v-for="item in card" style="width: 50%;overflow: hidden;">
|
|
|
<div v-for="item in cardData" style="width: 50%;overflow: hidden;">
|
|
|
<div style="width: 566px;min-height: 357px;background: url('../src/style/img/fault/apm/apmCard.png') no-repeat;background-size: 100% 100%;margin: 0px 0px 26px 90px;box-sizing: border-box;text-align: center;margin: 0 auto;padding-top: 65px">
|
|
|
<div style="color: white;font-size: 25px;">{{item.resClassName}}</div>
|
|
|
<div style="color: #ffffff;font-size: 24px;">{{item.resClassName}}</div>
|
|
|
<img src="../src/style/img/fault/apm/apmAbout.png" style="padding-top: 30px;">
|
|
|
<div style="padding-top: 30px;font-size: 20px;">应用:<span>{{item.use}}</span></div>
|
|
|
<div style="padding-top: 30px;font-size: 18px;color: #333333">应用:<span class="text-link">{{item.applicationName}}</span></div>
|
|
|
<hr style="FILTER: alpha(opacity=100,finishopacity=0,style=3)" width="80%" color=#aed6f4 size=1>
|
|
|
<div style="text-align: left;display: flex;margin-top: 10px;margin-left: 76px;font-size: 18px;">
|
|
|
<div style="width: 200px;margin-left: 10px;display: flex;align-self: center;">
|
|
|
<img src="../src/style/img/fault/base/alarm.png" style="width:22px;height: 22px;">
|
|
|
<span style="margin: 0px 6px;width: 95px">响应时间:</span>
|
|
|
<span class="text-link">{{item.time ? item.time : 0}}</span>
|
|
|
<span class="text-link">{{item.responseNum}}</span>
|
|
|
</div>
|
|
|
<div style="width: 200px;margin-left: 20px;display: flex;align-self: center;">
|
|
|
<img src="../src/style/img/fault/base/alarm.png" style="width:22px;height: 22px;">
|
|
|
<span style="margin: 0px 6px 0px 6px;width: 95px">Fullgc:</span>
|
|
|
<span class="text-link">{{item.count ? item.count : 0}}</span>
|
|
|
<span class="text-link">{{item.FullGcNum}}</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div style="text-align: left;display: flex;margin-top: 10px;margin-left: 76px;font-size: 18px;">
|
|
|
<div style="width: 200px;margin-left: 10px;display: flex;align-self: center;">
|
|
|
<img src="../src/style/img/fault/base/alarm.png" style="width:22px;height: 22px;">
|
|
|
<span style="margin: 0px 6px;width: 95px">线程总数:</span>
|
|
|
<span class="text-link">{{item.count ? item.count : 0}}</span>
|
|
|
<span class="text-link">{{item.threadNum}}</span>
|
|
|
</div>
|
|
|
<div style="width: 200px;margin-left: 20px;display: flex;align-self: center;">
|
|
|
<img src="../src/style/img/fault/base/alarm.png" style="width:22px;height: 22px;">
|
|
|
<span style="margin: 0px 6px 0px 6px;width: 95px">错误率:</span>
|
|
|
<span class="text-link">{{item.error ? item.count : 0}}</span>
|
|
|
<span class="text-link">{{item.errorNum}}</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
...
|
...
|
|