0
0

新增加了项目管理页面

This commit is contained in:
xubing
2025-11-18 14:03:22 +08:00
parent 64a411e463
commit 53e9307157
12 changed files with 974 additions and 45 deletions

View File

@@ -26,11 +26,14 @@ export class ProjectListView extends BaseView {
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>项目管理</title>
<title>飞行器项目管理</title>
${this.getStyles()}
</head>
<body>
<h2>🚀 飞行器项目管理</h2>
<div class="header">
<h2>🚀 飞行器项目管理</h2>
<button class="back-btn" onclick="goBackToManagement()">← 返回项目管理</button>
</div>
<table class="table">
<thead>
<tr>
@@ -108,6 +111,10 @@ export class ProjectListView extends BaseView {
);
}
function goBackToManagement() {
vscode.postMessage({ type: 'goBackToManagement' });
}
// 对话框函数(与之前相同)
function showConfirmDialog(title, message, onConfirm, onCancel) {
const overlay = document.createElement('div');