0
0

整理了代码结构

This commit is contained in:
xubing
2025-11-28 14:58:18 +08:00
parent 2fd84439b7
commit 5075a5f5cc
12 changed files with 82 additions and 103 deletions

View File

@@ -7,7 +7,7 @@ import { ProjectView } from './views/ProjectView';
import { AircraftView } from './views/AircraftView';
import { ContainerView } from './views/ContainerView';
import { ConfigView } from './views/ConfigView';
import { ModuleFolder } from './types/DataTypes';
import { ModuleFolder } from './types/CommonTypes';
// 数据模型接口
interface Project {
@@ -1911,4 +1911,4 @@ export class ConfigPanel {
const folderName = pathParts[pathParts.length - 1];
return path.join(projectPath, aircraft.name, container.name, folderName);
}
}
}