import { NTabs, NTabPane, NButton, NScrollbar } from 'naive-ui' import TrajTable from './components/TrajTable' import TrajUpload from './components/TrajUpload' import Panel from '@/components/Panel/index.vue' import { useDaodan } from './daodan' const panels = ['手动配置', 'STK轨迹文件配置'] export default defineComponent({ setup() { const { daodanData, showOrHideDdConfig } = useDaodan() const name = ref('手动配置') const data = ref([ { name: '起始点', lon: 120, lat: 21, alt: 0, time: 1183135260000, }, { name: '中间特征点', lon: 120, lat: 21, alt: 0, time: 1183135260000, detached: false, }, { name: '落点', lon: 120, lat: 21, alt: 0, time: 1183135260000, }, ]) const handleClose = () => {} return () => (