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; */ } }