From 655e9cbf030684d90899ba44ec70ded6b323dec3 Mon Sep 17 00:00:00 2001 From: qubiaobiao <3294694717@qq.com> Date: Tue, 20 Feb 2024 14:44:28 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=86=E5=9C=B0=E5=9B=BE=E6=94=B9=E4=B8=BA?= =?UTF-8?q?=E9=AB=98=E5=BE=B7=E5=9B=BE=E6=BA=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/app.ts | 2 +- .../src/render/components/BaseInfoView.vue | 16 +++++++++++++--- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/hwasmart-beidou-satellite-data-monitor-beidou-satellite-data-monitor-/src/main/app.ts b/hwasmart-beidou-satellite-data-monitor-beidou-satellite-data-monitor-/src/main/app.ts index f59e625..fd4e765 100644 --- a/hwasmart-beidou-satellite-data-monitor-beidou-satellite-data-monitor-/src/main/app.ts +++ b/hwasmart-beidou-satellite-data-monitor-beidou-satellite-data-monitor-/src/main/app.ts @@ -105,7 +105,7 @@ const getMonitorWindowArguments = (display: any) => { } const getTDTWindowArguments = (display: any) => { const option = getOption(display) - const url = 'http://map.hwasmart.com/' + const url = 'http://gd.map.hwasmart.com/' return { option, url } } diff --git a/hwasmart-beidou-satellite-data-monitor-beidou-satellite-data-monitor-/src/render/components/BaseInfoView.vue b/hwasmart-beidou-satellite-data-monitor-beidou-satellite-data-monitor-/src/render/components/BaseInfoView.vue index 46d9f59..3242d99 100644 --- a/hwasmart-beidou-satellite-data-monitor-beidou-satellite-data-monitor-/src/render/components/BaseInfoView.vue +++ b/hwasmart-beidou-satellite-data-monitor-beidou-satellite-data-monitor-/src/render/components/BaseInfoView.vue @@ -6,17 +6,25 @@
经  度:
{{ baseInfo.longitude ? baseInfo.longitude : '' }}
+
+
经度度分:
+
{{ baseInfo.longitude ? longitudeD + ' ' + longitudeM : '' }}
+
经度分秒:
-
{{ baseInfo.longitude ? longitudeD + longitudeM + longitudeS : '' }}
+
{{ baseInfo.longitude ? longitudeD + ' ' + longitudeM + ' ' + longitudeS : '' }}
纬  度:
{{ baseInfo.latitude ? baseInfo.latitude : '' }}
+
+
纬度度分:
+
{{ baseInfo.latitude ? latitudeD + ' ' + latitudeM : '' }}
+
纬度分秒:
-
{{ baseInfo.latitude ? latitudeD + latitudeM + latitudeS : '' }}
+
{{ baseInfo.latitude ? latitudeD + ' ' + latitudeM + ' ' + latitudeS : '' }}
海  拔:
@@ -84,6 +92,7 @@ defineExpose({ update }) .label { @apply float-left text-right w-2/5; min-width: 120px; + height: 36px; } } @@ -91,7 +100,8 @@ defineExpose({ update }) .content { @apply float-left text-left w-3/5; min-width: 165px; - min-height: 48px; + height: 36px; + /* min-height: 48px; */ } }