-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadminOrder.html
More file actions
121 lines (112 loc) · 5.68 KB
/
adminOrder.html
File metadata and controls
121 lines (112 loc) · 5.68 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>路亞鯊魚</title>
<link rel="shortcut icon" href="./img/Fish_icon.svg" type="image/x-icon">
<!-- fontawesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- googleFont -->
<link href="https://fonts.cdnfonts.com/css/poppins" rel="stylesheet">
<!-- myCSS -->
<link rel="stylesheet" href="scss/all.css">
</head>
<body>
<div class="container-fluid px-0 positionRel">
<!-- navbar -->
<nav class="navbar navbar-expand-lg py-2 px-1 px-lg-7 mb-md-3 mb-2">
<div class="container-fluid">
<a class="navbar-brand" href="admin.html">
<div class="d-flex flex-column ">
<img src="https://i.imgur.com/m4DS6F1.jpg" width="88" alt="" class="mb-1">
<img src="https://i.imgur.com/0fuaLdA.jpg" alt="" class="mb-1">
<img src="https://i.imgur.com/UjvXAdI.jpg" alt="">
</div>
</a>
</div>
</div>
</nav>
<!-- navbarEnd -->
<!-- adminList -->
<section>
<div class="container-fluid px-0">
<div class="px-2 px-lg-7">
<ul class="row px-0">
<li class="col-md-2">
<ul class="list-group list-group-flush px-0 text-center bg-success">
<li class="list-group-item list-group-item-primary py-2"><a href="adminChart.html">控制面板</a>
</li>
<li class="list-group-item py-2"><a href="adminOrder.html">訂單管理</a></li>
<li class="list-group-item py-2"><a href="#" class="adminSignOut">管理者登出</a></li>
</ul>
</li>
<!-- orderTable -->
<li class="col-md-10">
<div class="d-flex justify-content-between mb-2">
<h3 class="fw-bold">訂單管理</h3>
<a href="#" class="h5 fw-bold btn btn-success text-light allOrderItemDeleteBtn">全部刪除</a>
</div>
<div class="orderTableWrap">
<table class="orderTable">
<thead>
<tr class="bg-danger">
<th width="10%">訂單編號</th>
<th width="10%">聯絡人</th>
<th width="15%">聯絡地址</th>
<th width="10%">電子郵件</th>
<th width="30%">訂單品項</th>
<th width="10%">訂單日期</th>
<th width="10%">訂單狀態</th>
<th width="5%">操作</th>
</tr>
</thead>
<tbody class="orderList">
<!-- <tr>
<td>4545456456</td>
<td>
達哥
</td>
<td>austin9090</td>
<td>cccexample@gmail.com</td>
<td>
2020/11/5
</td>
<td>酷炫海盧竿</td>
<td class="orderStatus">
<a href="#" >留言</a>
</td>
<td>
<input type="button" class="orderItemDeleteBtn" value="刪除">
</td>
</tr> -->
</tbody>
</table>
</div>
</li>
</ul>
</div>
</div>
</section>
<!-- orderTableEnd -->
</div>
<!-- bootstrap popperjs -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"
integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p"
crossorigin="anonymous"></script>
<!-- bootstrap -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js"
integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF"
crossorigin="anonymous"></script>
<!-- sweetalert2 -->
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<!-- axios -->
<script src="https://unpkg.com/axios@1.1.2/dist/axios.min.js"></script>
<!-- myJS -->
<script src="scss/config.js"></script>
<script src="scss/adminJs/adminOrder.js"></script>
</body>
</html>