-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguanliAddress.html
101 lines (95 loc) · 4.23 KB
/
guanliAddress.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
<!doctype html>
<html>
<head>
<meta charset=utf-8>
<title>管理收货地址</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<!--针对ios-->
<meta content="yes" name="apple-mobile-web-app-capable">
<!--添加主屏后再次打开是否全屏-->
<meta name="apple-touch-fullscreen" content="yes">
<!--禁止百度转码-->
<meta name="Cache-Control" content="no-siteapp">
<!--ios顶部颜色-->
<meta content="black" name="apple-mobile-web-app-status-bar-style">
<!--禁用数字识别电话-->
<meta content="telephone=no" name="format-detection">
<!--添加主屏后显示标题文字-->
<meta name="apple-mobile-web-app-title" content="卡券商城">
<!--添加主屏显示的图标 sizes为尺寸-->
<link rel="apple-touch-icon" sizes="144x144" href="">
<!--viewport-->
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport">
<!--less-->
<link rel="stylesheet" href="css/app.less">
</head>
<body>
<!--顶部模块-->
<header>
<a class="back" href="javascript:;"></a>
<span class="title title_margin_center">管理收货地址</span>
</header>
<!--内容-->
<section>
<div class="addressBOX">
<ul>
<li flex="dir:top box:justify">
<div class="addresssHead" flex="dir:left box:mean">
<span class="name">张馨予</span>
<span class="tellphone">15236956235</span>
</div>
<div class="addressContent">
<p class="text">河南省洛阳市西工区唐宫西路与纱厂南路交叉口中泰商务大厦7楼706</p>
</div>
<div class="addressFoot">
<!--defaultY为选中样式-->
<label class="defaultN defaultY" for="radioClick01">设为默认</label>
<input id="radioClick01" checked="checked" name="setDefault" hidden type="radio">
<a class="delete" href="#">删除</a>
<a class="edit" href="#">编辑</a>
</div>
</li>
<li flex="dir:top box:justify">
<div class="addresssHead" flex="dir:left box:mean">
<span class="name">张馨予</span>
<span class="tellphone">15236956235</span>
</div>
<div class="addressContent">
<p class="text">河南省洛阳市西工区唐宫西路与纱厂南路交叉口中泰商务大厦7楼706</p>
</div>
<div class="addressFoot">
<label class="defaultN" for="radioClick02">设为默认</label>
<input id="radioClick02" name="setDefault" hidden type="radio">
<a class="delete" href="#">删除</a>
<a class="edit" href="#">编辑</a>
</div>
</li>
<li flex="dir:top box:justify">
<div class="addresssHead" flex="dir:left box:mean">
<span class="name">张馨予</span>
<span class="tellphone">15236956235</span>
</div>
<div class="addressContent">
<p class="text">河南省洛阳市西工区唐宫西路与纱厂南路交叉口中泰商务大厦7楼706</p>
</div>
<div class="addressFoot">
<label class="defaultN" for="radioClick03">设为默认</label>
<input id="radioClick03" name="setDefault" hidden type="radio">
<a class="delete" href="#">删除</a>
<a class="edit" href="#">编辑</a>
</div>
</li>
</ul>
</div>
<a class="addressFooter" href="">
<span class="add-Address">添加收货地址</span></a>
</section>
</body>
<script src="js/zepto.min.js"></script><!--ignore-->
<script src="js/touch.js"></script><!--ignore-->
<script src="js/slider.js"></script><!--ignore-->
<script src="js/fx.js"></script><!--ignore-->
<script src="js/fx_methods.js"></script><!--ignore-->
<script src="js/fastclick.js"></script><!--ignore-->
<script src="js/app.js"></script><!--ignore-->
</html>