-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsales_report.html
28 lines (28 loc) · 939 Bytes
/
sales_report.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sales Report</title>
<link rel="stylesheet" href="styles/pages/sales_report.css">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
</head>
<body>
<div class="container">
<h1>Sales Report</h1>
<div class="controls">
<select id="reportType">
<option value="day">日</option>
<option value="week">週</option>
<option value="month">月</option>
</select>
<input type="number" id="periods" min="1" max="10" value="1">
<button id="queryButton">查詢</button>
</div>
<div class="report-container">
<canvas id="salesChart"></canvas>
</div>
</div>
<script src="scripts/sales_report.js"></script>
</body>
</html>