feat(log): add log page with styling and navigation

This commit is contained in:
shenghuo2
2025-06-21 08:58:01 +08:00
parent baedcc608b
commit 83e566b183
3 changed files with 431 additions and 1 deletions

View File

@ -17,7 +17,7 @@
<i class="fas fa-chevron-down"></i>
</div>
<div class="header-right">
<i class="fas fa-bars"></i>
<i class="fas fa-bars" onclick="openLogPage()"></i>
<i class="fas fa-plus-circle"></i>
</div>
</header>
@ -292,6 +292,11 @@
function executeControl(controlName) {
showToast(`正在执行 ${controlName}...`);
}
// 打开日志页面
function openLogPage() {
window.location.href = 'log.html';
}
</script>
</body>
</html>