-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease_records.html
104 lines (100 loc) · 4.24 KB
/
release_records.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
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>用户中心</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" >
<link rel="stylesheet" href="css/release.css" >
<link rel="stylesheet" href="css/head.css" >
<link rel="stylesheet" href="css/file.css" >
</head>
<body>
<div class="nav_head">
<P>用户名</P>
<button class="btn btn-default"><a href="index.html" >退出</a></button>
<div class="nav dropdown">
<a class="btn btn-link" href="user_center.html">| 用户中心</a>
</div>
<div class="nav">
<a class="btn btn-link" href="index.html" >首页</a>
</div>
</div>
<div class="title">
<img src="img/title.png">
<div class="second_title">
<div class="find">
<input type="text" class="form-control" id="search" >
<a type="button" class="btn btn-warning" id="search-button" href="after_search.html" >
<span class="glyphicon glyphicon-search"></span>
</a>
<button type="button" class="btn btn-warning"><a href="release_goods.html">发布闲置</a></button>
</div>
</div>
</div>
<!-- 返回最上开始 -->
<div class="back_to_top">
<a href="#"><img src="img/index-回到最上.png"></a>
</div>
<!-- 返回最上结束 -->
<div class="list">
<div class="list_nav ">
<ul class="list-group">
<li class="list-group-item"><a href="user_center.html">个人资料</a></li>
<li class="list-group-item"><a href="release_records.html">发布记录</a></li>
<li class="list-group-item"><a href="purchase_record.html">购买记录</a></li>
<li class="list-group-item"><a href="collection.html">我的收藏</a></li>
<li class="list-group-item"><a href="browse_history.html">浏览历史</a></li>
<li class="list-group-item"><a href="c_password.html">修改密码</a></li>
<li class="list-group-item"><a href="logon_record.html">登录记录</a></li>
</ul>
</div>
<div class="list_body">
<table class="table">
<caption class="text-center">我的发布</caption>
<thead>
<tr>
<th>序列</th>
<th>名称</th>
<th>发布时间</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>物品1</td>
<td>2018.5.19</td>
<td>
<button type="button" class="btn btn-default" >查看</button>
<button type="button" class="btn btn-default" >删除</button>
</td>
</tr>
<tr>
<td>2</td>
<td>物品2</td>
<td>2018.5.19</td>
<td>
<button type="button" class="btn btn-default" >查看</button>
<button type="button" class="btn btn-default" >删除</button>
</td>
</tr>
</tbody>
</table>
<ul class="pagination">
<li><a href="#">«</a></li>
<li><a href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#">4</a></li>
<li><a href="#">5</a></li>
<li><a href="#">»</a></li>
</ul>
</div>
</div>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/?.js"></script>
</body>
</html>