|
|
@@ -2,12 +2,14 @@
|
|
|
<template>
|
|
|
<div class="static_info report">
|
|
|
<div ref="orgchart"></div>
|
|
|
- <div class="chart-template other">
|
|
|
- <!-- <div class="line"></div> -->
|
|
|
- <p>
|
|
|
- <span> 其它(本月) </span>
|
|
|
- </p>
|
|
|
- <div ref="otherchart"></div>
|
|
|
+ <div class="other">
|
|
|
+ <div class="chart-template">
|
|
|
+ <!-- <div class="line"></div> -->
|
|
|
+ <p>
|
|
|
+ <span> 其它(本月) </span>
|
|
|
+ </p>
|
|
|
+ <div ref="otherchart"></div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
@@ -116,7 +118,7 @@ export default {
|
|
|
color: "rgb(245, 245, 245)",
|
|
|
},
|
|
|
},
|
|
|
- color: ["#5470c6", "#91cc75", "#fac858"],
|
|
|
+ color: ["#5470c6", "#91cc75", "#ee6666"],
|
|
|
series: [
|
|
|
{
|
|
|
name: "来访",
|
|
|
@@ -126,15 +128,14 @@ export default {
|
|
|
label: {
|
|
|
// show:false,
|
|
|
color: "#fff",
|
|
|
-
|
|
|
formatter: (p) => {
|
|
|
return `${p.name}\r\n(${p.value},${p.percent}%)`;
|
|
|
},
|
|
|
},
|
|
|
- labelLine:{
|
|
|
+ labelLine: {
|
|
|
// smooth:true
|
|
|
- length:5,
|
|
|
- length2:5,
|
|
|
+ length: 5,
|
|
|
+ length2: 5,
|
|
|
},
|
|
|
data: [
|
|
|
{
|
|
|
@@ -162,10 +163,10 @@ export default {
|
|
|
return `${p.name}\r\n(${p.value},${p.percent}%)`;
|
|
|
},
|
|
|
},
|
|
|
- labelLine:{
|
|
|
+ labelLine: {
|
|
|
// smooth:true
|
|
|
- length:5,
|
|
|
- length2:5,
|
|
|
+ length: 5,
|
|
|
+ length2: 5,
|
|
|
},
|
|
|
data: [
|
|
|
{
|
|
|
@@ -344,7 +345,7 @@ export default {
|
|
|
margin: 5px;
|
|
|
|
|
|
& > div {
|
|
|
- height:calc(100% - 10px);
|
|
|
+ height: calc(100% - 10px);
|
|
|
}
|
|
|
& > div:first-child {
|
|
|
width: 35%;
|
|
|
@@ -355,8 +356,10 @@ export default {
|
|
|
}
|
|
|
|
|
|
.other {
|
|
|
- background-image: url(@/assets/board/bg.png);
|
|
|
- background-position: 100%;
|
|
|
- background-color: rgba(8, 8, 8);
|
|
|
+ background-image: url(@/assets/board/area_border.png);
|
|
|
+ background-size: 100% 100%;
|
|
|
+ // background-image: url(@/assets/board/area_title-bg.png);
|
|
|
+ // background-position: 100%;
|
|
|
+ // background-color: rgba(8, 8, 8);
|
|
|
}
|
|
|
</style>
|