1. 修改了合并模型导出模型的逻辑

2. 修改了一些冗余的bug
3. 页面上表格的调整
This commit is contained in:
2026-01-29 23:10:21 +08:00
parent 0f98d67e41
commit 03b6071856
10 changed files with 1008 additions and 460 deletions

View File

@@ -210,7 +210,7 @@
<div class="flex items-center text-sm">
<span id="breadcrumbParent" class="text-primary cursor-pointer hover:underline" onclick="goBack()">模型管理</span>
<span class="mx-2 text-gray-300">/</span>
<span class="text-gray-800 font-medium">添加模型</span>
<span id="pageTitle" class="text-gray-800 font-medium">添加模型</span>
</div>
</div>
@@ -382,6 +382,12 @@
if (breadcrumbParent) {
breadcrumbParent.textContent = '模型管理';
}
// 修改页面标题
const pageTitle = document.getElementById('pageTitle');
if (pageTitle) {
pageTitle.textContent = '编辑模型';
}
document.title = '编辑模型 / 远光软件微调平台';
// 修改按钮文字
const saveBtn = document.querySelector('button[onclick="submitForm()"]');
if (saveBtn) {