|
@@ -14,8 +14,8 @@
|
|
|
class="pir"
|
|
|
style="width: 100%; height: 130px"
|
|
|
/>
|
|
|
- <div v-if="tabData">
|
|
|
- 本月 {{ active }} 类:
|
|
|
+ <div v-if="tabData" style="width: 205px">
|
|
|
+ 本月{{ active }}类:
|
|
|
<span v-for="(item, itemIndex ) in tabData.qualityProcessAndRdEfficiencyCopywriters" :key="itemIndex">
|
|
|
<span>{{ item.type }}</span>
|
|
|
<span :class="{ fontWeight: true, red: item.total > 0 }">{{ item.total }}次</span>
|
|
@@ -31,9 +31,9 @@
|
|
|
(elm) => (reportBizName ? elm.name === reportBizName : true)
|
|
|
)"
|
|
|
:key="itemIndex"
|
|
|
- style="margin-bottom: 20px"
|
|
|
+ style="margin-bottom: 10px"
|
|
|
>
|
|
|
- <div class="fontWeight" style="margin-bottom: 10px">
|
|
|
+ <div class="fontWeight" style="margin-bottom: 0px">
|
|
|
{{ item.type }}数据
|
|
|
</div>
|
|
|
<div>本月{{ item.type }}{{ item.total }}次</div>
|
|
@@ -237,14 +237,9 @@ export default {
|
|
|
<style scoped lang="less">
|
|
|
.echarts-wrapper {
|
|
|
margin-top: -10px;
|
|
|
- .fontWeight {
|
|
|
- font-weight: 500;
|
|
|
- }
|
|
|
- .red {
|
|
|
- color: red;
|
|
|
- }
|
|
|
+
|
|
|
display: flex;
|
|
|
- color: #333;
|
|
|
+ color: #666;
|
|
|
font-size: 14px;
|
|
|
.pie-wrapper {
|
|
|
width: 50%;
|
|
@@ -262,8 +257,15 @@ export default {
|
|
|
.detail-wrapper {
|
|
|
width: 50%;
|
|
|
padding: 10px;
|
|
|
- height: 240px;
|
|
|
+ height: 260px;
|
|
|
overflow-y: scroll;
|
|
|
}
|
|
|
+ .fontWeight {
|
|
|
+ font-weight: 500;
|
|
|
+ color: #333;
|
|
|
+ }
|
|
|
+ .red {
|
|
|
+ color: red;
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|