diff --git a/src/components/e-charts/multiple_circle.vue b/src/components/e-charts/multiple_circle.vue
index c1113495fd4471e0a468cead11b45a6ad9d45b57..9475a7d2b09277aed87e267c6351ba811cf3120e 100644
--- a/src/components/e-charts/multiple_circle.vue
+++ b/src/components/e-charts/multiple_circle.vue
@@ -72,7 +72,7 @@ export default {
},
},
{
- value: temp2_data / 20,
+ value: temp2_data / 30,
name: "",
itemStyle: placeHolderStyle,
}
diff --git a/src/components/e-charts/single_circle.vue b/src/components/e-charts/single_circle.vue
index 02ed4ecb2d145b740aa16389754c98f1901ce6e7..cea0bb7810b432209909fd4d92075de0441078b1 100644
--- a/src/components/e-charts/single_circle.vue
+++ b/src/components/e-charts/single_circle.vue
@@ -26,14 +26,15 @@ export default {
text: num + "%",
textStyle: {
color: "#000",
- fontSize: 40,
+ fontSize: 26,
fontWeight: 200,
},
subtext: text,
subtextStyle: {
- color: "#c9cedd",
+ color: "#707693",
+ fontSize: 12,
},
- itemGap: -10, // 主副标题距离
+ itemGap: 0, // 主副标题距离
left: "center",
top: "center",
},
@@ -94,7 +95,7 @@ export default {
],
coordinateSystem: "polar",
roundCap: true,
- barWidth: 10,
+ barWidth: 8,
barGap: "-100%", // 两环重叠
z: 2,
@@ -115,7 +116,7 @@ export default {
],
coordinateSystem: "polar",
roundCap: true,
- barWidth: 10,
+ barWidth: 8,
barGap: "-100%", // 两环重叠
z: 1,
},
diff --git a/src/pages/data-analysis/my-application.vue b/src/pages/data-analysis/my-application.vue
index ce85f1346f1f68ff6433d592a1052acde10e4d45..81b05ca579f737462bf4049b74aacea589a285b7 100644
--- a/src/pages/data-analysis/my-application.vue
+++ b/src/pages/data-analysis/my-application.vue
@@ -174,7 +174,8 @@
-
+
+
@@ -232,9 +233,14 @@ export default {
],
text: "应用总数",
single_data: {
- num: 12,
- color: "#515fe7",
- text: "共享"
+ num: 60,
+ color: "#274fee",
+ text: "平台应用"
+ },
+ single_data1: {
+ num: 40,
+ color: "#e56600",
+ text: "开发者应用"
},
line_data: {
xaxis: [
@@ -639,6 +645,10 @@ export default {
height: calc(100% - 36px);
background-color: pink;
}
+.single-charts{
+ float: left;
+ width: 50%;
+}