"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AircraftConfigView = void 0; // src/panels/views/AircraftConfigView.ts const BaseView_1 = require("./BaseView"); class AircraftConfigView extends BaseView_1.BaseView { render(data) { const project = data?.project; const containers = data?.containers || []; // 生成容器列表的 HTML const containersHtml = containers.map((container) => ` 📦 ${container.name} 配置文件 `).join(''); return ` 飞行器配置 ${this.getStyles()}

📋 飞行器配置 - ${project?.name || '未知项目'}

${containersHtml}
容器 配置文件 操作
`; } } exports.AircraftConfigView = AircraftConfigView; //# sourceMappingURL=AircraftConfigView.js.map