diff --git a/src/packages/components/Charts/MyComponents/WorkshopScene/config.ts b/src/packages/components/Charts/MyComponents/WorkshopScene/config.ts
index 525faca..9fd2396 100644
--- a/src/packages/components/Charts/MyComponents/WorkshopScene/config.ts
+++ b/src/packages/components/Charts/MyComponents/WorkshopScene/config.ts
@@ -34,7 +34,7 @@ export const option = {
letterSpacing: 1,
isShowButton: false,
linkColor: '#00E5FF',
- linkText: '查看更多>>',
+ linkText: '',
sceneNameColor: '#ffffff',
sceneNameSize: 20,
labelColor: '#B0E0E6',
diff --git a/src/packages/components/Charts/MyComponents/WorkshopScene/index.vue b/src/packages/components/Charts/MyComponents/WorkshopScene/index.vue
index 58f2ea7..dafdbd8 100644
--- a/src/packages/components/Charts/MyComponents/WorkshopScene/index.vue
+++ b/src/packages/components/Charts/MyComponents/WorkshopScene/index.vue
@@ -20,25 +20,17 @@
-
-
{{
- scene.name }}
-
{{ metric.label
}}
{{
metric.value }}
-
+
@@ -88,7 +80,8 @@ const option = computed(() => props.chartConfig.option)
.title {
display: flex;
align-items: center;
- margin-top: -5px;
+ margin-left: 35px;
+ margin-top: 5px;
.title-text {
height: 35px;
@@ -117,7 +110,7 @@ const option = computed(() => props.chartConfig.option)
display: flex;
align-items: center;
padding: 0 25px;
- height: 100px; // Taller rows
+ height: 120px; // Taller rows
background-size: 100% 100%;
background-repeat: no-repeat;
@@ -151,8 +144,8 @@ const option = computed(() => props.chartConfig.option)
position: absolute;
top: 8px;
left: 8px; // Positioned differently in 1.png
- width: 12px;
- height: 12px;
+ width: 0px;
+ height: 0px;
background-color: #FFD700;
border-radius: 50%;
}
@@ -208,15 +201,15 @@ const option = computed(() => props.chartConfig.option)
align-items: center;
margin-bottom: 10px; // More space
.point {
- width: 10px; // Bigger point
- height: 10px;
+ width: 0px; // Bigger point
+ height: 0px;
border-radius: 50%;
margin-right: 10px;
}
}
.metric-value {
font-weight: bold;
- margin-left: 20px; // Align with label text
+ margin-left: 40px; // Align with label text
}
}
}