-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (34 loc) · 1.07 KB
/
index.html
File metadata and controls
38 lines (34 loc) · 1.07 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link href="static/css_index.css" rel="stylesheet">
</head>
<body>
<div id="title">
</div>
<div id="main">
<div id="search_div">
<form>
<input id="search_content" type="text" placeholder="搜索物品名称">
<input id="search_button" type="button" value="搜索" onclick="search()">
<select id="lang_select">
</select>
</form>
<div id="basic_information">
<p id="total_number"></p>
</div>
</div>
<div id="items_list">
<ul id="items_list_ul">
{{items_li}}
</ul>
</div>
</div>
</body>
<script src="static/data/DefaultTran.js" type="text/javascript"></script>
<script src="static/data/AddData.js" type="text/javascript"></script>
<script src="static/func.js" type="text/javascript"></script>
<script src="static/index.js" type="text/javascript"></script>
</html>