bindBankCard.jsp
8.13 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
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
<c:set var="ctx" value="${pageContext.request.contextPath}" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<jsp:include page="${ctx }/view/common/meta.jsp" />
<link rel="stylesheet" href="${ctx}/resource/css/validator.css" type="text/css" />
<link href="${ctx}/resource/css/member.css" rel="stylesheet" type="text/css" />
<link href="${ctx}/resource/css/home.css" rel="stylesheet" type="text/css" />
<link href="${ctx}/resource/css/detail.css" rel="stylesheet" type="text/css" />
<link href="${ctx}/resource/css/style.css" rel="stylesheet" type="text/css" />
<link href="${ctx }/resource/css/easyDialog.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="${ctx}/resource/js/user/formValidator-4.1.3.js"></script>
<script type="text/javascript" src="${ctx}/resource/js/user/formValidatorRegex.js"></script>
<script type="text/javascript" src="${ctx}/resource/js/user/account/bindBankCard.js"></script>
<style type="text/css">
.registbanner1000 {
height: 220px;
text-align: center;
}
</style>
</head>
<body>
<jsp:include page="${ctx}/view/common/header.jsp" />
<div class="bigbox">
<jsp:include page="${ctx }/view/common/menu.jsp" />
<div class="rightbox0" style="margin-bottom: 70px;">
<form action="/user/bindcard" method="post" name="form"
id="form">
<input type="hidden" id="yzm" name="yzm" value="" />
<input type="hidden" value="" id="checkResult" />
<table width="100%" border="0" cellspacing="0" class="table-account">
<tbody>
<c:if test="${resultMap.resultCode == '-1'}">
<tr>
<th colspan="3" style="font:24px bold;color:red;text-align:left;padding-left:200px;height:80px;">${resultMap.resultMsg}</th>
</tr>
</c:if>
<tr>
<th>开户手机号:</th>
<td width="190">${mobileTel}</td>
</tr>
<tr>
<th><b class="td-red">*</b>验证码:</th>
<td width="190"><input type="text" class="common_input common_input_verification" style="float: left;" id="check_code" name="check_code" maxlength="6"/>
<a href="javascript:sendSms();" class="btn-verification" id="code" style="float: left;margin-right: 3px;">发送验证码</a>
</td>
<td><span class="prompt_text" id="code_text"></span></td>
</tr>
<tr>
<th><b class="td-red">*</b>开户地:</th>
<td style="width:400px;"><div class="table_select01"
style="float: left;">
<select class="common_input" id="province_code"
name="province_code" onchange="getProvinceCode()">
<option value="0">请选择省份</option>
<option value="0011">北京</option>
<option value="0012">天津</option>
<option value="0013">河北</option>
<option value="0014">山西</option>
<option value="0015">内蒙古</option>
<option value="0021">辽宁</option>
<option value="0022">吉林</option>
<option value="0023">黑龙江</option>
<option value="0031">上海</option>
<option value="0032">江苏</option>
<option value="0033">浙江</option>
<option value="0034">安徽</option>
<option value="0035">福建</option>
<option value="0036">江西</option>
<option value="0037">山东</option>
<option value="0041">河南</option>
<option value="0042">湖北</option>
<option value="0043">湖南</option>
<option value="0044">广东</option>
<option value="0045">广西</option>
<option value="0046">海南</option>
<option value="0050">重庆</option>
<option value="0051">四川</option>
<option value="0052">贵州</option>
<option value="0053">云南</option>
<option value="0054">西藏</option>
<option value="0061">陕西</option>
<option value="0062">甘肃</option>
<option value="0063">青海</option>
<option value="0064">宁夏</option>
<option value="0065">新疆</option>
<c:forEach items="${provinceList}" var="province"
varStatus="s">
<option value="${province.province_code}">
${province.province_name}</option>
</c:forEach>
</select> <select class="common_input" id="city_code" name="city_code">
</select>
</div>
</td>
<td><span class="prompt_text" id="city_codeTip" style="float: left"></span></td>
</tr>
<tr>
<th><b class="td-red">*</b>开户银行:</th>
<td><select class="common_input" style="float: left;"
id="open_bank_code" name="open_bank_code">
<option value="0">请选择银行</option>
<option value="01020000">工商银行</option>
<option value="01050000">建设银行</option>
<option value="01030000"> 农业银行</option>
<option value="04030000"> 邮政储蓄银行</option>
</select></td>
<td><span style="float: left;" class="prompt_text"
id="open_bankTip"></span> <a
href="${ctx}/help/searchArticle?categoryId=46&id=229" ref="same"
target="_blank" class="blue14"
style="margin-left: 20px; font-size: 12px;">查看银行限额表</a></td>
</tr>
<tr>
<th><b class="td-red">*</b>银行卡号:</th>
<td><input type="text" style="float: left; width: 175px;"
class="common_input" name="fund_card" id="fund_card" /></td>
<td><span class="prompt_text" id="fund_cardTip">请输入银行卡号(仅支持借记卡)</span></td>
</tr>
</tbody>
</table>
<div class="table_button table_two_button" style="margin-bottom: 10px;" id="btnBox">
<input type="reset" class="gray_account_button opencountbtn" value="重填" style="float: left; margin-right: 30px; border: none;" />
<input type="button" value="提交" style="border: none;" id="sub" onclick="btnsub();" class="yellow_account_button opencountbtn" />
</div>
</form>
</div>
<div class="clear"></div>
</div>
<jsp:include page="${ctx}/view/common/bottom.jsp" />
<div id="showBox" class="tipbox3" style="display: none;">
<div class="contentbox3">
<h2 style="margin: 0px auto;">
正在审核中,请您耐心等待<span class="ani_dot">...</span>
</h2>
</div>
</div>
<style type="text/css">
.ani_dot {
font-family: simsun;
}
:root .ani_dot {
margin-left:6px;
display: inline-block;
width: 1.5em;
vertical-align: bottom;
overflow: hidden;
}
@-webkit-keyframes dot {
0% {
width: 0;
margin-right: 1.5em;
}
25% {
width: 0em;
margin-right: 1.5em;
}
50% {
width: 0.5em;
margin-right: 1em;
}
70% {
width: 1em;
margin-right: .5em;
}
100% {
width: 1.5em;
margin-right: 0;
}
}
.ani_dot {
-webkit-animation: dot 2s infinite step-start;
}
@keyframes dot {
0% {
width: 0;
margin-right: 1.5em;
}
25% {
width: 0em;
margin-right: 1.5em;
}
50% {
width: 0.5em;
margin-right: 1em;
}
70% {
width: 1em;
margin-right: .5em;
}
100% {
width: 1.5em;
margin-right: 0;
}
}
.ani_dot {
animation: dot 2s infinite step-start;
}
.tipbox3 {
position: relative;
width: 502px;
height: 170px;
margin: 0 auto;
margin-top: 100px;
border: 2px #ccc solid;
border-top: 2px solid #d0111a;
background-color: #fff;
}
.contentbox3 {
padding-top: 60px;
font-size: 20px;
text-align: center;
}
.opencountbtn:hover{
cursor: pointer;
background-color: rgb(231, 36, 38);
}
</style>
</body>
</html>