-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (51 loc) · 1.18 KB
/
index.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Judgements</title>
<link rel="stylesheet" href="css/dc.min.css">
<link rel="stylesheet" href="css/custom.css">
<!-- D3 -->
<script type="text/javascript" src="js/d3.js"></script>
<script type="text/javascript" src="js/crossfilter.js"></script>
<script type="text/javascript" src="js/dc.js"></script>
</head>
<body>
<h3>Judgements</h3>
<div>
<div id="select" style="float: left;"></div>
<div id="sys-pie"></div>
<div id="type-pie"></div>
<div id="search"><h4>搜尋公司名稱</h4></div>
</div>
<div>
<div id="rs-row">
<h4>案由</h4>
</div>
<div id="def-row">
<h4>被告</h4>
</div>
<div id="plt-row">
<h4>原告</h4>
</div>
</div>
<div style="clear:both;">
<table class="table dc-data-grid">
<thead>
<tr class=header>
<th>案號</th>
<th>案由</th>
<th>原告</th>
<th>被告</th>
<th>法官</th>
<th>裁判費</th>
<th>爭點</th>
<th>文字探勘主題</th>
</tr>
</thead>
</table>
</div>
<script type="text/javascript" src="js/jquery-3.4.1.min.js"></script>
<script type="text/javascript" src="js/chart.js"></script>
</body>
</html>