From 1c31659852f8360cc0fdfac26aff51e54b8b8b67 Mon Sep 17 00:00:00 2001
From: riku <risaku@163.com>
Date: 星期五, 27 十二月 2024 17:21:58 +0800
Subject: [PATCH] 添加排名展示;优化展示方式

---
 src/components/animation/SatelliteAnimation.vue |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/src/components/animation/SatelliteAnimation.vue b/src/components/animation/SatelliteAnimation.vue
index b3cfaaf..bc0845f 100644
--- a/src/components/animation/SatelliteAnimation.vue
+++ b/src/components/animation/SatelliteAnimation.vue
@@ -100,11 +100,15 @@
           const d = data[index];
           // SatelliteProxy.clearText(mapViews);
           // eslint-disable-next-line vue/no-mutating-props
-          that.mapViews.textViews = SatelliteProxy.drawDataText(
+          const { textViews, labelsLayer } = SatelliteProxy.drawDataText(
             that.mapViews.points,
             d,
             that.mapViews.textViews
           );
+          // eslint-disable-next-line vue/no-mutating-props
+          that.mapViews.textViews = textViews;
+          // eslint-disable-next-line vue/no-mutating-props
+          that.mapViews.labelsLayer = labelsLayer;
           SatelliteProxy.drawColor(that.mapViews.gridViews, d);
         }
       );

--
Gitblit v1.9.3