-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddBankCard.html
More file actions
84 lines (83 loc) · 3.63 KB
/
addBankCard.html
File metadata and controls
84 lines (83 loc) · 3.63 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1">
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="../css/font-icons.css">
<link rel="stylesheet" href="../css/iuapmobile.um.css">
<link rel="stylesheet" href="../css/businessCard.css">
<script src="../js/summer.js" ></script>
<script src="../js/jquery.min.js" ></script>
<script src="../js/Frameworks/iuapmobile.frameworks.ui.js" ></script>
<script src="../js/appsettings.js"></script>
<script src="../js/adaptive.js"></script>
<script src="../js/cvi_busy_lib.js"></script>
<script src="../js/addBankCard.js"></script>
</head>
<body>
<div class="wraper">
<header>
<i class="turnBackLastPage"></i>
<h3 class="headerTitle">新增银行账户</h3>
<span class="headerOperation">保存</span>
</header>
<main>
<div class="photoWraper">
<div class="photoContainer addBankCardIcon">
</div>
</div>
<div class="userMesgWraper">
<form id="userMesgWraper">
<ul class="userMesgWraperList">
<li class="userMesgWraperListItem">
<label for="accountType" class="userMesgWraperListItemText">
帐号类型
</label>
<input type="text" class="userMesgWraperListItemVal" name="account_type" id="accountType" placeholder="请输入/扫描">
</li>
<li class="userMesgWraperListItem">
<label for="cardUser" class="userMesgWraperListItemText">
持卡人
</label>
<input type="text" class="userMesgWraperListItemVal" name="cardholder" id="cardUser" placeholder="请输入/扫描">
</li>
<li class="userMesgWraperListItem">
<label for="bankCardNum" class="userMesgWraperListItemText">
银行帐号
</label>
<input type="text" class="userMesgWraperListItemVal" name="account" id="bankCardNum" placeholder="请输入/扫描">
</li>
<li class="userMesgWraperListItem">
<label for="totalBankBig" class="userMesgWraperListItemText">
所属总行
</label>
<input type="text" class="userMesgWraperListItemVal" name="owned" id="totalBankBig" placeholder="请输入/扫描">
</li>
<li class="userMesgWraperListItem">
<label for="driverCardBank" class="userMesgWraperListItemText">
开户行全称
</label>
<input type="text" class="userMesgWraperListItemVal" name="fullname" id="driverCardBank" placeholder="请输入/扫描">
</li>
</ul>
</form>
</div>
</main>
<footer>
</footer>
</div>
<div class="takePhotosTypeWraper" style="display: none">
<div class="closeTakePhotosTypeWraper"></div>
<div class="selectTakePhotosTypeContainer">
<div class="selectTakePhotosTypeItem" id="openCamaraDiv">
<span>拍摄</span>
</div>
<div class="selectTakePhotosTypeItem borderBottomNone" id="openAlbumDiv">
<span>从手机相册选择</span>
</div>
<button class="selectTakePhotosTypeCancelBtn">取消</button>
</div>
</div>
</body>
</html>