This commit is contained in:
cjw
2026-02-16 01:35:58 +08:00
parent 8cc92601a7
commit a604ca39d9
2 changed files with 24 additions and 2 deletions
+22
View File
@@ -166,4 +166,26 @@ function formatFileSize(bytes) {
const sizes = ['Bytes', 'KB', 'MB', 'GB'];
const i = Math.floor(Math.log(bytes) / Math.log(k));
return parseFloat((bytes / Math.pow(k, i)).toFixed(2)) + ' ' + sizes[i];
}
// 跳转到上传页面
async function goToUpload() {
try {
// 上传页面需要GET请求,直接跳转
window.location.href = '/';
} catch (error) {
console.error('跳转失败:', error);
window.location.href = '/';
}
}
// 跳转到主页
async function goToHome() {
try {
// 主页需要GET请求,直接跳转
window.location.href = '/';
} catch (error) {
console.error('跳转失败:', error);
window.location.href = '/';
}
}
+2 -2
View File
@@ -185,10 +185,10 @@
<p>查看所有上传的STP文件分析记录</p>
</div>
<div class="nav-buttons">
<button class="upload-btn" onclick="location.href='/upload'">
<button class="upload-btn" onclick="goToUpload()">
📁 上传新文件
</button>
<button class="upload-btn" onclick="location.href='/'">
<button class="upload-btn" onclick="goToHome()">
🔄 返回主页
</button>
</div>