This commit is contained in:
admin
2026-02-07 20:04:42 +09:00
parent 331953bb7f
commit c60cbf2d9a
29 changed files with 1851 additions and 1246 deletions

View File

@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
@@ -100,7 +100,7 @@
</table>
<script>
const API = "http://127.0.0.1:8000";
const API = "";
// --------------------
// 初期化
@@ -140,7 +140,7 @@
});
document.getElementById("totalBalance").innerText = Number(
data.total_balance
data.total_balance,
).toLocaleString();
}
@@ -154,7 +154,7 @@
const sel = document.getElementById("accountSelect");
sel.innerHTML = data.items
.map(
(i) => `<option value="${i.account_id}">${i.account_name}</option>`
(i) => `<option value="${i.account_id}">${i.account_name}</option>`,
)
.join("");