-
Notifications
You must be signed in to change notification settings - Fork 2
/
file_detail.html
100 lines (99 loc) · 4.04 KB
/
file_detail.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!doctype html>
<html>
<head>
<title>File_detail</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<link href="resources/css/jquery-ui-themes.css" type="text/css" rel="stylesheet"/>
<link href="resources/css/axure_rp_page.css" type="text/css" rel="stylesheet"/>
<link href="files/file_deatil/styles.css" type="text/css" rel="stylesheet"/>
<script src="resources/scripts/jquery.min.js"></script>
<script src="resources/scripts/jquery-ui-1.8.10.custom.min.js"></script>
<script src="resources/scripts/bootstrap.min.js"></script>
<script src="files/file_deatil/data.js"></script>
</head>
<body>
<!-- top-->
<div style="position: absolute;left: 0px;top: 0px;">
<img src="images/file_detail/top.png" alt=""/>
</div>
<!-- backward-->
<div>
<img id="backwardButton" src="images/public/backward.png" onclick="javascript: history.back();" alt=""/>
</div>
<!-- search-->
<div id="search">
<img src="images/public/search.png" alt=""/>
</div>
<!-- file list-->
<div class="table-container">
<table id="fileList">
<body>
<tr height="201" style="background: #f8f8f8;">
<td width="71"><img src="images/file_detail/leftBar.png" alt=""/></td>
<td width="1009" colspan="2">
<p style="font-family: '汉仪旗黑-35S';font-size: 46px;color: #a8a8aa;">一天前</p>
</td>
</tr>
<tr height="201" style="border:2px solid #F8F8F8;">
<td width="71"></td>
<td width="861">
<p class="fileName" style="font-family:'Avenir 45 Book';font-size: 46px;color: black;">XXXXX.docx</p>
<p class="createTime" style="font-family: '汉仪旗黑-35S';font-size: 34.54px;color: black;">2015.2.7 10:32</p>
</td>
<td width="148">
<img class="deleteThis" src="images/file_detail/deleteIcon.png" alt=""/>
</td>
</tr>
<tr height="201" style="border:2px solid #F8F8F8;">
<td width="71"></td>
<td width="861">
<p class="fileName" style="font-family:'Avenir 45 Book';font-size: 46px;color: black;">XXXXX.pdf</p>
<p class="createTime" style="font-family: '汉仪旗黑-35S';font-size: 34.54px;color: black;">2015.2.6 11:30</p>
</td>
<td width="148">
<img class="deleteThis" src="images/file_detail/deleteIcon.png" alt=""/>
</td>
</tr>
<tr height="201" style="background: #f8f8f8;">
<td width="71"><img src="images/file_detail/leftBar.png" alt=""/></td>
<td width="1009" colspan="2">
<p style="font-family: '汉仪旗黑-35S';font-size: 46px;color: #a8a8aa;">一周前</p>
</td>
</tr>
<tr height="201" style="border:2px solid #F8F8F8;">
<td width="71"></td>
<td width="861">
<p class="fileName" style="font-family:'Avenir 45 Book';font-size: 46px;color: black;">XXXXX.doc</p>
<p class="createTime" style="font-family: '汉仪旗黑-35S';font-size: 34.54px;color: black;">2015.1.7 10:32</p>
</td>
<td width="148">
<img class="deleteThis" src="images/file_detail/deleteIcon.png" alt=""/>
</td>
</tr>
<tr height="201" style="border:2px solid #F8F8F8;">
<td width="71"></td>
<td width="861">
<p class="fileName" style="font-family:'Avenir 45 Book';font-size: 46px;color: black;">XXXXX.xsl</p>
<p class="createTime" style="font-family: '汉仪旗黑-35S';font-size: 34.54px;color: black;">2015.1.6 11:30</p>
</td>
<td width="148">
<img class="deleteThis" src="images/file_detail/deleteIcon.png" alt=""/>
</td>
</tr>
<tr height="201" style="border:2px solid #F8F8F8;">
<td width="71"></td>
<td width="861">
<p class="fileName" style="font-family:'Avenir 45 Book';font-size: 46px;color: black;">XXXXX.pdf</p>
<p class="createTime" style="font-family: '汉仪旗黑-35S';font-size: 34.54px;color: black;">2015.1.5 11:30</p>
</td>
<td width="148">
<img class="deleteThis" src="images/file_detail/deleteIcon.png" alt=""/>
</td>
</tr>
</body>
</table>
</div>
</body>
</html>