|
@@ -308,11 +308,39 @@
|
|
|
'outColor': '#fff',
|
|
|
'label': mainData.testDevPeopleScale.label,
|
|
|
'labelColor': '#fff',
|
|
|
- 'subTitle': `<span style='color:#fff;' class='isHove'>${mainData.testDevPeopleScale.countStr}</span>`,
|
|
|
+ // 'subTitle': `<span style='color:#fff;' class='isHove'>${mainData.testDevPeopleScale.subCountList[0].label}</span><span style='color:#fff;' class='isHove'>${mainData.testDevPeopleScale.subCountList[0].countStr}</span>`,
|
|
|
'bgColor': 'transparent',
|
|
|
'padding': '8px 0px'
|
|
|
}"
|
|
|
/>
|
|
|
+ <!-- <div class="titleLevel3" style="color: #fff;">{{ mainData.testDevPeopleScale.label }}</div> -->
|
|
|
+ <div class="content">
|
|
|
+ <div
|
|
|
+ v-for="item in mainData.testDevPeopleScale.subCountList"
|
|
|
+ :key="item.label"
|
|
|
+ class="item"
|
|
|
+ >
|
|
|
+ <!-- @click.stop="$emit(
|
|
|
+ 'checkDetialModal',
|
|
|
+ { ...mainData.testDevPeopleScale, activeLabel: item.label }
|
|
|
+ )" -->
|
|
|
+ <span class="title">{{ item.label }}:</span><span class="value"><span class="num noHover">{{ item.countStr }}</span></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!-- <div class="foot">
|
|
|
+ <div
|
|
|
+ v-for="item in mainData.testDevPeopleScale.subCountList"
|
|
|
+ :key="item.label"
|
|
|
+ class="item"
|
|
|
+ @click.stop="$emit(
|
|
|
+ 'checkDetialModal',
|
|
|
+ { ...mainData.testDevPeopleScale, activeLabel: item.label }
|
|
|
+ )"
|
|
|
+ >
|
|
|
+ <span class="title">{{ item.label }}:</span><span class="value"><span class="num isHove">{{ item.countStr }}</span></span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div> -->
|
|
|
</div>
|
|
|
</el-col>
|
|
|
</el-row>
|