desktop修正

This commit is contained in:
admin
2025-12-14 23:54:48 +09:00
parent f9f5eec35e
commit 74dcb88fe6
25 changed files with 1068 additions and 157 deletions

47
frontend/journal.html Normal file
View File

@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<title>仕訳入力</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<h1>仕訳入力</h1>
<label>
日付:
<input type="date" id="journal-date" />
</label>
<br /><br />
<label>
摘要:
<input type="text" id="description" size="40" />
</label>
<br /><br />
<table id="lines-table">
<thead>
<tr>
<th>科目ID</th>
<th>借方</th>
<th>贷方</th>
<th></th>
</tr>
</thead>
<tbody></tbody>
</table>
<button onclick="addLine()"> 行追加</button>
<br /><br />
<button onclick="submitJournal()">保存</button>
<a href="index.html">← 戻る</a>
<script src="js/api.js"></script>
<script src="js/journal.js"></script>
</body>
</html>