修正
This commit is contained in:
@@ -3,6 +3,8 @@
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
|
||||
<meta http-equiv="Pragma" content="no-cache" />
|
||||
<title>NJTS 会計システム - メイン</title>
|
||||
<link rel="stylesheet" href="css/style.css" />
|
||||
<link rel="stylesheet" href="/css/mobile.css" />
|
||||
@@ -190,6 +192,16 @@
|
||||
<p><a class="btn" href="payroll.html">給与システムを開く</a></p>
|
||||
</section>
|
||||
|
||||
<section class="card">
|
||||
<h2>🏦 銀行明細照会</h2>
|
||||
<p>
|
||||
銀行のCSVデータを取込み、明細を管理します。重複チェック付きで安全に取込め、月別・銀行別の検索・印刷が可能です。
|
||||
</p>
|
||||
<p>
|
||||
<a class="btn" href="bank-statement.html" style="background: #1565c0">銀行明細を開く</a>
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section class="card">
|
||||
<h2>🏛 e-Gov 電子送達</h2>
|
||||
<p>
|
||||
@@ -263,18 +275,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
// dropdown toggle
|
||||
const toggle = document.getElementById("accountingToggle");
|
||||
const menu = document.getElementById("accountingMenu");
|
||||
toggle.addEventListener("click", (e) => {
|
||||
menu.style.display = menu.style.display === "block" ? "none" : "block";
|
||||
});
|
||||
// click outside to close
|
||||
document.addEventListener("click", (e) => {
|
||||
if (!toggle.contains(e.target) && !menu.contains(e.target)) {
|
||||
menu.style.display = "none";
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user