|
@@ -5,7 +5,7 @@
|
|
|
<div class="echarts-wrapper">
|
|
|
<div class="pie-wrapper">
|
|
|
<div class="total-wrapper">
|
|
|
- 总数:<span class="total" @click.stop="reportBizName = ''">{{ tabData.total }}</span>
|
|
|
+ 总数:<span class="total fontWeight" @click.stop="reportBizName = ''">{{ tabData.total }}</span>
|
|
|
</div>
|
|
|
<div
|
|
|
id="a_tylo_oo_2ppmn_ayghs"
|
|
@@ -16,20 +16,19 @@
|
|
|
</div>
|
|
|
<div class="detail-wrapper">
|
|
|
<div v-if="tabData && pieData.length">
|
|
|
- <div class="fontWeight" style="margin-bottom: 10px;">{{ tabData.title }}</div>
|
|
|
+ <div style="margin-bottom: 10px;" v-html="tabData.title.replace(/线上问题/,'<strong>线上问题</strong>' ).replace(/为(\d+)/g, `为<strong>$1</strong>`)" />
|
|
|
<div
|
|
|
v-for="item in tabData.onlineProblemCopywriters.filter((elm) =>
|
|
|
reportBizName ? elm.reportBizName === reportBizName : true
|
|
|
)"
|
|
|
:key="item.reportBizName"
|
|
|
>
|
|
|
- <div v-if="item.problemDetails.length" class="fontWeight" style="margin-top: 5px">{{ item.reportBizName }}:{{ item.priorityStr }}</div>
|
|
|
+ <div v-if="item.problemDetails.length" style="margin-top: 5px"><span class="fontWeight">{{ item.reportBizName }}</span>:<span v-html="item.priorityStr.replace(/\ (\d+)/g, `为<strong>$1</strong>`)" /></div>
|
|
|
<div v-for="(pitem, pIndex) in item.problemDetails" :key="pIndex">
|
|
|
<div class="fontWeight" style="color: #ED8F41;margin-top: 10px;">{{ pitem.subClientType }}</div>
|
|
|
<div v-for="(dItem, dIndex) in pitem.details" :key="dIndex" style="padding-left: 10px">
|
|
|
- <div style="margin-top: 5px;">
|
|
|
- <span class="fontWeight">{{ dIndex + 1 }}、</span
|
|
|
- ><span class="fontWeight">{{ dItem.priority }}问题:</span
|
|
|
+ <div style="margin-top: 5px;"><span>{{ dIndex + 1 }}、</span
|
|
|
+ ><span>{{ dItem.priority }}问题:</span
|
|
|
>{{ dItem.problem }}
|
|
|
</div>
|
|
|
<div v-html="dItem.reason" />
|
|
@@ -38,7 +37,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div v-if="!pieData.length" class="no-data">各业务线{{ active }}类线上问题为 <span style="font-size: 16px">0</span>!</div>
|
|
|
+ <div v-if="!pieData.length" class="no-data">各业务线{{ active }}类<strong>线上问题</strong>为<span style="font-size: 16px">0</span>!</div>
|
|
|
</div>
|
|
|
</boxCom>
|
|
|
</div>
|
|
@@ -183,7 +182,7 @@ export default {
|
|
|
}
|
|
|
.fontWeight {
|
|
|
color: #333;
|
|
|
- font-weight: 500;
|
|
|
+ font-weight: 600;
|
|
|
}
|
|
|
.no-data {
|
|
|
top: 50%;
|
|
@@ -192,5 +191,8 @@ export default {
|
|
|
text-align: center;
|
|
|
position:absolute;
|
|
|
}
|
|
|
+ /deep/strong{
|
|
|
+ font-weight: 600;
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|