-
Notifications
You must be signed in to change notification settings - Fork 0
/
card.html
executable file
·58 lines (56 loc) · 1.94 KB
/
card.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
<!DOCTYPE html>
<html>
<head>
<title>银行卡管理</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="description" content="Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description.">
<link rel="stylesheet" href="lib/weui.min.css">
<link rel="stylesheet" href="css/jquery-weui.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body ontouchstart>
<!--主体-->
<header class="wy-header">
<div class="wy-header-icon-back"><span></span></div>
<div class="wy-header-title">银行卡管理</div>
</header>
<div class="weui-content">
<div class="weui-cells cardlist">
<a class="weui-cell weui-cell_access card-opt" href="javascript:;">
<div class="weui-cell__bd"><p>622202******35754</p></div>
<div class="weui-cell__ft">工商银行</div>
</a>
<a class="weui-cell weui-cell_access card-opt" href="javascript:;">
<div class="weui-cell__bd"><p>622202******35754</p></div>
<div class="weui-cell__ft">民丰银行</div>
</a>
</div>
<div class="weui-btn-area">
<a href="add_card.html" class="weui-btn weui-btn_plain-default">+添加银行卡</a>
</div>
</div>
<script src="lib/jquery-2.1.4.js"></script>
<script src="lib/fastclick.js"></script>
<script type="text/javascript" src="js/jquery.Spinner.js"></script>
<script>
$(function() {
FastClick.attach(document.body);
});
</script>
<script src="js/jquery-weui.js"></script>
<script>
$(document).on("click", ".card-opt", function() {
$.actions({
actions: [
{
text: "删除",
className: 'bg-danger',
}
]
});
});
</script>
</body>
</html>