-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserAdr.html
141 lines (134 loc) · 4.17 KB
/
userAdr.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>用户中心</title>
<link rel="stylesheet" type="text/css" href="css/reset.css" />
<link rel="stylesheet" type="text/css" href="css/user.css" />
<script src="js/jquery-3.5.1.min.js" type="text/javascript" charset="utf-8"></script>
<script src="js/user.js" type="text/javascript" charset="utf-8"></script>
<script src="js/jquery.citys.js" type="text/javascript" charset="utf-8"></script>
<script src="js/data-option.js" type="text/javascript" charset="utf-8"></script>
<script src="js/citys.js" type="text/javascript" charset="utf-8"></script>
<script src="js/userAdr.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
$(function() {
$("#left").load("userLeft.html");
$("#head").load("header/header_wudaohang.html");
$("#foot").load("footer/footer_1000.html");
});
</script>
</head>
<body>
<div id="head"></div>
<div class="floor01">
<div class="container">
<div class="title">
我的唯品会
</div>
</div>
</div>
<div class="floor02 fl clearfix">
<div class="container clearfix">
<div id="left"></div>
<!-- 收货地址 -->
<div class="right04 clearfix">
<div class="title">
<span></span>
<a href="userZiliao.html">我的唯品会</a>
<span>>收货地址</span>
</div>
<div class="box">
<span>已经保存的收货地址</span>
<span>您已经创建 </span>
<span>0</span>
<span> 个收货地址,最多可创建 </span>
<span>10</span>
<span> 个</span>
<a href="javascript:void(0)">
<div class="creat">
新增收货地址
</div>
</a>
</div>
<div class="body">
<!-- 设置好的地址 -->
<div>
<div class="adr fl">
<div class="person">
<img src="img/user/person.png" >
<span id="person2"></span>
</div>
<div class="address">
<img src="img/user/address.png" >
<span id="address2"></span>
</div>
<div class="cell">
<img src="img/user/cell.png" >
<span id="cell2"></span>
<button>删除</button>
</div>
</div>
</div>
</div>
<div class="creatAdr">
<div class="top">
<span>新增收货地址</span>
</div>
<div class="bot">
<div class="t1">
<span>*</span>
<span>收货人:</span>
<input id="person" type="text" placeholder="收货人姓名" />
</div>
<div class="t1">
<span>*</span>
<span>手机号:</span>
<input id="cell" type="text" placeholder="手机号" />
<span>备用号码:</span>
<input type="text" placeholder="手机号/区号-固定电话" />
</div>
<div class="t3">
<span>*</span>
<span>收货时间:</span>
<select name="">
<option value="">周一至周日均可发货</option>
<option value="">周六日、节假日收货</option>
<option value="">周一至周五收货</option>
</select>
</div>
<div class="t7">
<span>*</span>
<span>所在地区:</span>
<div id="demo3" class="citys">
<p>
<select name="province"></select>
<select name="city"></select>
<select name="area"></select>
<select name="town"></select>
</p>
</div>
</div>
<div class="t3">
<span>*</span>
<span>详细地址:</span>
<input type="text" placeholder="详细地址" />
</div>
<div class="t4 clearfix">
<span>地址类型:</span>
<form action="">
<label for=""><input type="radio" name="1" />家庭</label>
<label for=""><input type="radio" name="1" />公司</label>
<label for=""><input type="radio" name="1" />其他</label>
</form>
</div>
<div class="t5"><input type="checkbox" name="" id="" value="" />设为默认地址</div>
<a id="but" href="javascript:void(0)">
<div class="t6">保存</div>
</a>
</div>
</div>
</div>
<div id="foot"></div>
</body>
</html>