添加设置收款账户部分
This commit is contained in:
parent
91332295a8
commit
687fbf7551
@ -112,3 +112,19 @@ body .header1{
|
||||
/*Opera11*/
|
||||
color: #fff;
|
||||
}
|
||||
.cancellation{
|
||||
width: 96%;
|
||||
height: 42px;
|
||||
line-height: 42px;
|
||||
text-align: center;
|
||||
margin: 36px 2%;
|
||||
background: -moz-linear-gradient(left, #f5354b, #ff005a);
|
||||
/*Mozilla*/
|
||||
background: -webkit-gradient(linear, 0 50%, 100% 50%, from(#f5354b), to(#ff005a));
|
||||
/*Old gradient for webkit*/
|
||||
background: -webkit-linear-gradient(left, #f5354b, #ff005a);
|
||||
/*new gradient for Webkit*/
|
||||
background: -o-linear-gradient(left, #f5354b, #ff005a);
|
||||
/*Opera11*/
|
||||
color: #fff;
|
||||
}
|
3
js/setting_recive.js
Normal file
3
js/setting_recive.js
Normal file
@ -0,0 +1,3 @@
|
||||
mui.plusReady(function(){
|
||||
console.log("ok")
|
||||
})
|
@ -27,10 +27,11 @@
|
||||
class="r2">收货地址管理</span><img class="youjiantou" src="../img/youjiantou.png" /></div>
|
||||
<div class="row shadown_wai" id="setting_loginInfo"><img class="img" src="../img/setting_lock1.png" /><span class="r1">账户安全</span><img
|
||||
class="youjiantou" src="../img/youjiantou.png" /></div>
|
||||
<div class="row shadown_wai" id="setting_recive"><img class="img" src="../img/setting_lock1.png" /><span class="r1">收款信息</span><span
|
||||
class="r2">收款信息管理</span><img class="youjiantou" src="../img/youjiantou.png" /></div>
|
||||
</div>
|
||||
|
||||
<div class="loginout cancellation shadown_wai" style="display: none;">注销账号</div>
|
||||
<div class="loginout shadown_wai">退出登录</div>
|
||||
<div class="footer cancellation shadown_wai">注销账号</div>
|
||||
</body>
|
||||
<script src="../js/mui.min.js"></script>
|
||||
<script src="../js/jquery-3.2.1.min.js" type="text/javascript" charset="utf-8"></script>
|
||||
|
61
templete/setting_recive.html
Normal file
61
templete/setting_recive.html
Normal file
@ -0,0 +1,61 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title></title>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover">
|
||||
<link href="../css/mui.min.css" rel="stylesheet" />
|
||||
</head>
|
||||
|
||||
<body style="visibility:hidden;">
|
||||
<div class="header">
|
||||
<div class="header_con">
|
||||
<a class="mui-action-back mui-icon mui-icon-left-nav mui-pull-left"></a>
|
||||
<p class="title">收款信息</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="top"></div>
|
||||
<div class="con">
|
||||
<div class="row shadown_wai">
|
||||
<img src="../img/icon_pwd1.png" />
|
||||
<span class="s1">银行账户:</span>
|
||||
<input class="yzm" name="realname" type="text" id="realname" value="" placeholder="请输入银行开户姓名" />
|
||||
</div>
|
||||
<div class="row shadown_wai">
|
||||
<img src="../img/icon_pwd1.png" />
|
||||
<span class="s1">银行简称:</span>
|
||||
<input class="yzm" name="bank_name" type="text" id="bank_name" value="" placeholder="请输入 例如:农业银行" />
|
||||
</div>
|
||||
<div class="row shadown_wai">
|
||||
<img src="../img/icon_pwd1.png" />
|
||||
<span class="s1">银行账号:</span>
|
||||
<input class="yzm" name="bank_no" type="text" id="bank_no" value="" placeholder="请输入银行卡号" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="down clearfix">
|
||||
<div class="btn shadown_wai" id="true">确定</div>
|
||||
</div>
|
||||
</body>
|
||||
<script src="../js/mui.min.js"></script>
|
||||
<script src="../js/jquery-3.2.1.min.js" type="text/javascript" charset="utf-8"></script>
|
||||
<script type="text/javascript">
|
||||
mui.plusReady(function() {
|
||||
var element;
|
||||
var parent = document.body;
|
||||
element = document.createElement('script');
|
||||
element.src = localStorage.getItem("jsUrl") + 'common.js?ver=' + localStorage.getItem('version');
|
||||
parent.appendChild(element);
|
||||
|
||||
element.onload = function() {
|
||||
var style = [JZL.getCssUrl('setting_recive.css'), JZL.getCssUrl('login.css'), JZL.getCssUrl('sha.css'), JZL.getCssUrl('setting.css'), JZL.getCssUrl("global.css"), JZL.getCssUrl("header.css")];
|
||||
JZL.css_init(style);
|
||||
var script = [JZL.getJsUrl('setting_recive.js'), JZL.getJsUrl('common.js')];
|
||||
JZL.js_init(script);
|
||||
setTimeout(function() {
|
||||
parent.style.visibility = "visible";
|
||||
}, 100);
|
||||
};
|
||||
})
|
||||
</script>
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user