|
@@ -119,11 +119,11 @@
|
|
|
</section>
|
|
|
<section class='ratio-list'>
|
|
|
<section class='block' :style='panelStyle(item)' v-for='(item , index) in maintainList' :key='index'>
|
|
|
- <h4 class='section-title' @click='toggerPanel(item)'>{{item.title}}<img @mouseenter="showToolTip(index, item.title)" @mouseleave="hideToolTip(index, item.title)" src="../../assets/images/icons/notice.png" /></h4>
|
|
|
+ <h4 class='section-title' @click='toggerPanel(item)'>{{item.title}}<img @mouseover="showToolTip(index, item.title)" @mouseout="hideToolTip(index, item.title)" src="../../assets/images/icons/notice.png" /></h4>
|
|
|
<transition name="selectDownUpExtendTop">
|
|
|
<div class="tool-tip" v-if="item.showToolTip">
|
|
|
<h5 style="font-weight:bold;">{{item.title + '比值'}}</h5>
|
|
|
- <p>{{item.title === '专维' ? '逾期未完成/今年即将逾期任务数/总任务' : '当月即将逾期/总任务'}}</p>
|
|
|
+ <p>{{item.title === '专维' ? '逾期未完成/即将逾期/今年总任务' : '即将逾期/当月总任务'}}</p>
|
|
|
<div class="tip-triangle" :style="{left: item.title === '第三方检测' ? '12.5rem': '7.8rem'}"> </div>
|
|
|
</div>
|
|
|
</transition>
|
|
@@ -134,7 +134,7 @@
|
|
|
<span>{{option.cname}}</span>
|
|
|
<span v-if='item.title === "专维"'>
|
|
|
<span>{{option.rptGlsmsStatistics.overdue_unfinished}} /</span>
|
|
|
- <span>{{option.rptGlsmsStatistics.due_num || 0}} /</span>
|
|
|
+ <span>{{option.rptGlsmsStatistics.due_num}} /</span>
|
|
|
<span>{{option.rptGlsmsStatistics.total}}</span>
|
|
|
</span>
|
|
|
<span v-else>
|
|
@@ -323,7 +323,6 @@ export default {
|
|
|
* @Param data 当前点击的项
|
|
|
*/
|
|
|
createNavpathByData(data) {
|
|
|
- console.log(data)
|
|
|
let pathArr = data.path.split('/')
|
|
|
let newArr = []
|
|
|
pathArr.forEach(item => {
|