fix: 整理代码

This commit is contained in:
严浩
2025-04-01 16:33:02 +08:00
parent 99b5aeb042
commit 21660cd9fa
2 changed files with 13 additions and 17 deletions

View File

@ -1,14 +1,11 @@
<script setup lang="ts">
import 'cesium/Build/Cesium/Widgets/widgets.css';
// GroundStationOptions 不再直接使用,已在 types.ts 中被 GroundStationState 引用
import type { GroundStationState } from './types'; // 从 types.ts 导入
import type { GroundStationState } from './types';
import { useHCesiumViewerCls } from './useHCesiumViewerCls';
import { useHCesiumViewerClsGroundStation } from './useHCesiumViewerClsGroundStation';
// GroundStationState 接口已移至 types.ts
const props = defineProps<{
groundStationState?: GroundStationState;
}>();