-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpurchase_record.html
167 lines (161 loc) · 7.23 KB
/
purchase_record.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!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/purchase_record.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">
<p class="text-center">购买记录</p>
<ul id="myTab" class="nav nav-tabs">
<li class="active">
<a href="#pay" data-toggle="tab">待付款</a>
</li>
<li>
<a href="#send_out" data-toggle="tab">待发货</a>
</li>
<li>
<a href="#collect_goods" data-toggle="tab">待收货</a>
</li>
</ul>
<div id="myTabContent" class="tab-content">
<div class="tab-pane fade in active" id="pay">
<table class="table">
<thead>
<tr>
<th>序列</th>
<th>名称</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>物品1</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>
<button type="button" class="btn btn-default" >查看</button>
<button type="button" class="btn btn-default" >删除</button>
</td>
</tr>
</tbody>
</table>
</div>
<div class="tab-pane fade" id="send_out">
<table class="table">
<thead>
<tr>
<th>序列</th>
<th>名称</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>物品1</td>
<td>
<input type="button" class="btn btn-default" value="查看">
<input type="button" class="btn btn-default" value="删除">
</td>
</tr>
<tr>
<td>2</td>
<td>物品2</td>
<td>
<input type="button" class="btn btn-default" value="查看">
<input type="button" class="btn btn-default" value="删除">
</td>
</tr>
</tbody>
</table>
</div>
<div class="tab-pane fade" id="collect_goods">
<table class="table">
<thead>
<tr>
<th>序列</th>
<th>名称</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>物品1</td>
<td>
<input type="button" class="btn btn-default" value="查看">
<input type="button" class="btn btn-default" value="删除">
</td>
</tr>
<tr>
<td>2</td>
<td>物品2</td>
<td>
<input type="button" class="btn btn-default" value="查看">
<input type="button" class="btn btn-default" value="删除">
</td>
</tr>
</tbody>
</table>
</div>
</div>
</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>