调整了框架的结构,使之能顺利访问html页面

master
jicunxi 7 years ago
parent bfc4cf0e7c
commit 4ddc45ce64

@ -20,7 +20,7 @@
@font-face { @font-face {
font-family: 'neo'; font-family: 'neo';
src: url("NEOTERICc.ttf")/*tpa=http://www.17sucai.com/preview/384665/2018-12-28/login/font/NEOTERICc.ttf*/; src: url("ttf/NEOTERICc.ttf")/*tpa=http://www.17sucai.com/preview/384665/2018-12-28/login/font/NEOTERICc.ttf*/;
} }
input:focus{ input:focus{
outline: none; outline: none;
@ -303,7 +303,7 @@
<p class="form"><input type="text" id="userName" placeholder="账号"></p> <p class="form"><input type="text" id="userName" placeholder="账号"></p>
<p class="form"><input type="password" id="userPwd" placeholder="密码"></p> <p class="form"><input type="password" id="userPwd" placeholder="密码"></p>
<input type="submit" value="登录" class="btn" name="action"> <input type="submit" value="登录" class="btn" name="action">
<input type="button" value="注册" class="btn" onclick="location.href='Login1.html'"> <input type="button" value="注册" class="btn" onclick="location.href='Register.html'">
</form> </form>
<a href="#">忘记密码</a> <a href="#">忘记密码</a>
</span> </span>
@ -333,110 +333,4 @@
</div> </div>
</div> </div>
</body> </body>
<script>
var onoff = true//根据此布尔值判断当前为注册状态还是登录状态
var confirm = document.getElementsByClassName("confirm")[0]
//var user = document.getElementById("user")
//var passwd = document.getElementById("passwd")
//var con_pass = document.getElementById("confirm-passwd")
//自动居中title
var name_c = document.getElementById("title")
name = name_c.innerHTML.split("")
name_c.innerHTML = ""
for (i = 0; i < name.length; i++)
if (name[i] != ",")
name_c.innerHTML += "<i>" + name[i] + "</i>"
//引用hint()在最上方弹出提示
function hint() {
let hit = document.getElementById("hint")
hit.style.display = "block"
setTimeout("hit.style.opacity = 1", 0)
setTimeout("hit.style.opacity = 0", 2000)
setTimeout('hit.style.display = "none"', 3000)
}
//回调函数
/*function submit(callback) {
//if (passwd.value == con_pass.value) {
let request = new XMLHttpRequest()
let url = ""
request.open("post", url, true)
let data = new FormData()
data.append("user", user.value)
data.append("passwd", passwd.value)
request.onreadystatechange = function() {
if (this.readyState == 4) {
callback.call(this, this.response)
//console.log(this.responseText)
}
}
request.send(data)
}*/
/*else {
hit.innerHTML = "两次密码不同"
hitting()
}
}*/
//注册按钮
function signin() {
let status = document.getElementById("status").getElementsByTagName("i")
let hit = document.getElementById("hint").getElementsByTagName("p")[0]
if (onoff) {
confirm.style.height = 51 + "px"
status[0].style.top = 35 + "px"
status[1].style.top = 0
onoff = !onoff
} else {
/*if (!/^[A-Za-z0-9]+$/.test(user.value))
hit.innerHTML = "账号只能为英文和数字"
else if (user.value.length < 6)
hit.innerHTML = "账号长度必须大于6位"
else if (passwd.value.length < 6)
hit.innerHTML = "密码长度必须大于6位"
else if (passwd.value != con_pass.value)
hit.innerHTML = "两次密码不相等"
else if (passwd.value = con_pass.value) {
submit(function(res) {
if (res == "exist")
hit.innerHTML = "该账号已存在"
else if (res == true) {
hit.innerHTML = "账号注册成功,两秒后自动刷新页面"
setTimeout("window.location.reload()", 2000)
} else if (res == false)
hit.innerHTML = "账号注册失败"
})
}
hint()*/
}
}
//登录按钮
function login() {
if (onoff) {
/*let request = new XMLHttpRequest()
let url = ""
request.open("post", url, true)
let data = new FormData()
data.append("user", user.value)
data.append("passwd", passwd.value)
request.onreadystatechange = function() {
if (this.readyState == 4) {
if (this.responseText == false)
hint()
else
window.location.href = this.responseText;
}
}
request.send(data)*/
} else {
let status = document.getElementById("status").getElementsByTagName("i")
confirm.style.height = 0
status[0].style.top = 0
status[1].style.top = 35 + "px"
onoff = !onoff
}
}
</script>
</html> </html>

@ -20,7 +20,7 @@
@font-face { @font-face {
font-family: 'neo'; font-family: 'neo';
src: url("NEOTERICc.ttf")/*tpa=http://www.17sucai.com/preview/384665/2018-12-28/login/font/NEOTERICc.ttf*/; src: url("ttf/NEOTERICc.ttf")/*tpa=http://www.17sucai.com/preview/384665/2018-12-28/login/font/NEOTERICc.ttf*/;
} }
input:focus{ input:focus{
outline: none; outline: none;
@ -334,110 +334,6 @@
</div> </div>
</div> </div>
</body> </body>
<script>
var onoff = true//根据此布尔值判断当前为注册状态还是登录状态
var confirm = document.getElementsByClassName("confirm")[0]
//var user = document.getElementById("user")
//var passwd = document.getElementById("passwd")
//var con_pass = document.getElementById("confirm-passwd")
//自动居中title
var name_c = document.getElementById("title")
name = name_c.innerHTML.split("")
name_c.innerHTML = ""
for (i = 0; i < name.length; i++)
if (name[i] != ",")
name_c.innerHTML += "<i>" + name[i] + "</i>"
//引用hint()在最上方弹出提示
function hint() {
let hit = document.getElementById("hint")
hit.style.display = "block"
setTimeout("hit.style.opacity = 1", 0)
setTimeout("hit.style.opacity = 0", 2000)
setTimeout('hit.style.display = "none"', 3000)
}
//回调函数
/*function submit(callback) {
//if (passwd.value == con_pass.value) {
let request = new XMLHttpRequest()
let url = ""
request.open("post", url, true)
let data = new FormData()
data.append("user", user.value)
data.append("passwd", passwd.value)
request.onreadystatechange = function() {
if (this.readyState == 4) {
callback.call(this, this.response)
//console.log(this.responseText)
}
}
request.send(data)
}*/
/*else {
hit.innerHTML = "两次密码不同"
hitting()
}
}*/
//注册按钮
function signin() {
let status = document.getElementById("status").getElementsByTagName("i")
let hit = document.getElementById("hint").getElementsByTagName("p")[0]
if (onoff) {
confirm.style.height = 51 + "px"
status[0].style.top = 35 + "px"
status[1].style.top = 0
onoff = !onoff
} else {
/*if (!/^[A-Za-z0-9]+$/.test(user.value))
hit.innerHTML = "账号只能为英文和数字"
else if (user.value.length < 6)
hit.innerHTML = "账号长度必须大于6位"
else if (passwd.value.length < 6)
hit.innerHTML = "密码长度必须大于6位"
else if (passwd.value != con_pass.value)
hit.innerHTML = "两次密码不相等"
else if (passwd.value = con_pass.value) {
submit(function(res) {
if (res == "exist")
hit.innerHTML = "该账号已存在"
else if (res == true) {
hit.innerHTML = "账号注册成功,两秒后自动刷新页面"
setTimeout("window.location.reload()", 2000)
} else if (res == false)
hit.innerHTML = "账号注册失败"
})
}
hint()*/
}
}
//登录按钮
function login() {
if (onoff) {
/*let request = new XMLHttpRequest()
let url = ""
request.open("post", url, true)
let data = new FormData()
data.append("user", user.value)
data.append("passwd", passwd.value)
request.onreadystatechange = function() {
if (this.readyState == 4) {
if (this.responseText == false)
hint()
else
window.location.href = this.responseText;
}
}
request.send(data)*/
} else {
let status = document.getElementById("status").getElementsByTagName("i")
confirm.style.height = 0
status[0].style.top = 0
status[1].style.top = 35 + "px"
onoff = !onoff
}
}
</script>
</html> </html>

@ -4,9 +4,9 @@
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=0.5, maximum-scale=2.0, user-scalable=yes"/> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=0.5, maximum-scale=2.0, user-scalable=yes"/>
<title>我的订单</title> <title>我的订单</title>
<link href="bootstrap.css" rel="stylesheet" type="text/css"/> <link href="css/bootstrap.css" rel="stylesheet" type="text/css"/>
<link href="home.css" rel="stylesheet" type="text/css"/> <link href="css/orders2.css" rel="stylesheet" type="text/css"/>
<link href="font_l6a0fwucxvzehfr.css" type="text/css"/> <link href="css/orders1.css" type="text/css"/>
<style type="text/css"> <style type="text/css">
.tb960x90 {display:none!important;display:none} .tb960x90 {display:none!important;display:none}
</style> </style>

@ -7,7 +7,7 @@
<meta content="yes" name="apple-mobile-web-app-capable"/> <meta content="yes" name="apple-mobile-web-app-capable"/>
<meta content="black" name="apple-mobile-web-app-status-bar-style"/> <meta content="black" name="apple-mobile-web-app-status-bar-style"/>
<meta content="telephone=no" name="format-detection"/> <meta content="telephone=no" name="format-detection"/>
<link type="text/css" rel="stylesheet" href="style.css" > <link type="text/css" rel="stylesheet" href="css/bankCardManage.css" >
</head> </head>
<body> <body>

@ -0,0 +1,138 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta content="telephone=no" name="format-detection" />
<link href="css/cardNumberBinding.css" tppabs="http://www.17sucai.com/preview/1089623/2018-06-08/form/css/style.css" rel="stylesheet" type="text/css">
<title>卡号绑定</title>
<script>
(function (doc, win) {
var docEl = doc.documentElement,
resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize',
recalc = function () {
var clientWidth = docEl.clientWidth;
if (!clientWidth) return;
if(clientWidth>=750){
docEl.style.fontSize = '100px';
}else{
docEl.style.fontSize = 100 * (clientWidth / 750) + 'px';
}
};
if (!doc.addEventListener) return;
win.addEventListener(resizeEvt, recalc, false);
doc.addEventListener('DOMContentLoaded', recalc, false);
})(document, window);
</script>
</head>
<body>
<div id="Nav_bar">
<div class="left"><a href="#" onclick="history.go(-1)"><img src="images/cardNumberBinding2.png" ></a></div>
<div class="center">卡号绑定</div>
<div class="right"><img src="images/cardNumberBinding1.png"></div>
</div>
<!--中间内容部分-->
<div id="content">
<div class="txt01">银行卡号<input type="number" id="bankAccount" name="bankAccount" class="text" value="" pattern="[0-9]*" tabindex="10" onChange="check_for_btn()" /></div>
<div class="txt01">真实姓名<input type="text" id="realname" name="realname" class="text" tabindex="7" onChange="check_for_btn()" /></div>
<div class="txt01">身份证号
<input type="text" id="idNum" pattern="[0-9]*" name="idNum" class="text" tabindex="6"/>
</div>
<div class="txt01">预留手机号<input type="number" id="phoneNum" pattern="[0-9]*" name="phoneNum" class="text1" tabindex="6"/></div>
</div>
<button id="btn" class="r_but" onclick="check()">确定</button>
<script type="text/javascript" src="js/jquery-1.8.3.min.js" tppabs="http://www.17sucai.com/preview/1089623/2018-06-08/form/js/jquery-1.8.3.min.js"></script>
<script type="text/javascript">
//弹出框
function alert1(e) {
$("body").append("<div id='msg'><span>" + e + "</span></div>");
clearmsg();
}
//关闭弹出框
function clearmsg() {
var t = setTimeout(function() {
$("#msg").remove();
}, 2000)
};
// $("#btn").check(){
// if(bankNum!=""&&realname!=""&&idNum!=""&&phoneNum!=""){
// var userBank = {"bankNum":document.getElementById("bankNum").value,
// "realname":document.getElementById("realname").value,
// "idNum":document.getElementById("idNum").value,
// "phoneNum":document.getElementById("phoneNum").value,
// }
// var jsonStr = JSON.stringify(userBank);
// $.ajax({
// type:"POST",
// url:"bankCardController",
// dataType:"JSON",
// data:jsonStr
// })
// }else{
// alert("请检查您的输入!");
// }
// }
//提交后的check
function check() {
var phoneNum = $("#phoneNum").val();
var realname = $("#realname").val();
if(phoneNum == "") {
alert1("请输入手机号");
clearmsg();
return false;
}
if(!(/^1[34578]\d{9}$/.test(phoneNum))) {
alert1("请输入正确的手机号");
clearmsg();
return false;
}
if(realname == "") {
alert1("请输入姓名");
clearmsg();
return false;
}
$(".r_but").css("background", "#49b9eb");
}
//必填项没有全部填写时,灰色,全部填写时蓝色
function check_for_btn() {
var phoneNum = $("#phoneNum").val();
var realname = $("#realname").val();
if(realname == "" || phoneNum == null) {
$(".r_but").css("background", "#d1d5db");
}
if(realname != "" && phoneNum != null) {
$(".r_but").css("background", "#49b9eb");
}
}
$(function() {
$(".r_but").css("background", "#d1d5db");
})
</script>
</body>
</html>

@ -10,7 +10,7 @@
<title>绑定信息</title> <title>绑定信息</title>
<!-- Bootstrap core CSS--> <!-- Bootstrap core CSS-->
<!-- 最新版本的 Bootstrap 核心 CSS 文件 --> <!-- 最新版本的 Bootstrap 核心 CSS 文件 -->
<link rel="stylesheet" href="bootstrap.min.css" tppabs="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css"> <link rel="stylesheet" href="css/bootstrap.min.css" tppabs="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css">
<style type="text/css"> <style type="text/css">
body{ body{
@ -138,7 +138,7 @@
</div> </div>
</div> </div>
<script type="text/javascript" src="jquery.min.js" tppabs="http://www.17sucai.com/preview/1266961/2018-07-11/sms/js/jquery.min.js"></script> <script type="text/javascript" src="js/jquery.min.js" tppabs="http://www.17sucai.com/preview/1266961/2018-07-11/sms/js/jquery.min.js"></script>
<script type="text/javascript"> <script type="text/javascript">
var phoneReg = /(^1[3|4|5|7|8]\d{9}$)|(^09\d{8}$)/;//手机号正则 var phoneReg = /(^1[3|4|5|7|8]\d{9}$)|(^09\d{8}$)/;//手机号正则
var count = 60; //间隔函数1秒执行 var count = 60; //间隔函数1秒执行

@ -7,9 +7,9 @@
<meta content="yes" name="apple-mobile-web-app-capable"/> <meta content="yes" name="apple-mobile-web-app-capable"/>
<meta content="black" name="apple-mobile-web-app-status-bar-style"/> <meta content="black" name="apple-mobile-web-app-status-bar-style"/>
<meta content="telephone=no" name="format-detection"/> <meta content="telephone=no" name="format-detection"/>
<link href="style.css" rel="stylesheet" type="text/css"/> <link href="css/countCenter.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.min.js"></script> <script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="tab.js"></script> <script type="text/javascript" src="js/tab.js"></script>
</head> </head>
<body> <body>

@ -208,14 +208,14 @@ a {
.aui-card-list-bg { .aui-card-list-bg {
padding-left: 20px; padding-left: 20px;
padding-top: 20px; padding-top: 20px;
background: url("icon-pig.png")/*tpa=http://www.17sucai.com/preview/1268063/2018-07-17/BankCard/images/icon-pig.png*/ no-repeat right; background: url("../images/bankCardManage1.png")/*tpa=http://www.17sucai.com/preview/1268063/2018-07-17/BankCard/images/icon-pig.png*/ no-repeat right;
background-size: contain; background-size: contain;
height: 140px; height: 140px;
position: relative; position: relative;
} }
.aui-card-list-loan { .aui-card-list-loan {
background: url("icon-loan.png")/*tpa=http://www.17sucai.com/preview/1268063/2018-07-17/BankCard/images/icon-loan.png*/ no-repeat right; background: url("../images/bankCardManage2.png")/*tpa=http://www.17sucai.com/preview/1268063/2018-07-17/BankCard/images/icon-loan.png*/ no-repeat right;
background-size: contain; background-size: contain;
} }

@ -0,0 +1,53 @@
html, body, ul, li, ol, dl, dd, dt, p, h1, h2, h3, h4, h5, h6, form, fieldset, legend, img{
margin:0;
padding:0;
}
body {
font-family: 'microsoft yahei','微软雅黑','abchanel-couture','华文细黑','STXHei','华文黑体','ST Heiti','MS黑体','MSHei','Arial','Helvetica','sans-serif';
background-color: #fff;
height: 100%;
max-width:7.5rem;
margin: 0 auto;
}
li, ul {
margin: 0;
padding: 0;
border: none;
}
li, ul { list-style-type: none;}
img {
border: 0;
border: none;
width: 100%;
}
a, a:hover, a:visited {text-decoration: none;}
a{color: #000;}
a:hover, a:focus{
color: #333;
}
#Nav_bar{height:0.88rem; padding:0 0.2rem; background:#2d2d2e; color:#fff; font-size:0.28rem;}
#Nav_bar .left{width:20%; height:0.63rem; float:left; padding-top:0.25rem;}
#Nav_bar .left img{ width:0.2rem; height:0.38rem;}
#Nav_bar .center{width:60%; height:0.88rem; float:left; font-size:0.36rem; text-align:center; line-height:0.88rem;}
#Nav_bar .right{width:20%; height:0.88rem; float:right; text-align:right; line-height:0.88rem;}
#Nav_bar .right img{ width:0.5rem; height:0.1rem;}
#content{width:6.9rem; overflow:auto; padding:0 0.3rem;}
#content .txt01{width:100%; min-height:1.08rem; border-bottom:#dfdfdf solid 0.01rem; float:left; line-height:1.08rem; color:#666; font-size:0.3rem;}
.r_but{ width:5.5rem; height:0.98rem; background:#49b9eb; line-height:0.98rem; border:none; font-size:0.32rem; color:#fff; text-align:center; margin-left:1rem;}
select,input,textarea{
font-size: 0.28rem;
color: #999;
width: 70%;
height: 1rem;
float: right;
margin-right: 0.1rem;
border: none;
}
.txt01 label{float:right; width:13%; height:0.48rem; text-align:right; margin-top:0.3rem; vertical-align:middle; line-height:0.48rem; margin-left:0.8rem;}
.txt01 span{ margin-bottom:-0.1rem;}
.txt01 a{float:right; height:1rem; width:80%; text-align:right; color:#999;}
/*弹出框样式*/
#msg {height: 1em; text-align: center; position: fixed; top: 50%; margin-top: -1rem; line-height: 2rem; width: 100%; }
#msg span {color: #ffffff; background: rgba(0, 0, 0, 0.5); height: 1.5em; padding: 0.5em 1.5em; border-radius: 6px; font-size: 26px; font-family: "microsoft yahei"; }
#btn {border-radius: 6px;}

@ -133,7 +133,7 @@ input::-webkit-input-placeholder {
border: none; border: none;
outline: none; outline: none;
background-color: #d3d3d3; background-color: #d3d3d3;
background: url("serch.jpg") no-repeat; background: url("../images/search.jpg") no-repeat;
background-size: 100%; background-size: 100%;
background-position: center; background-position: center;
} }
@ -188,7 +188,7 @@ input::-webkit-input-placeholder {
} }
.el-checkbox input[type=checkbox]:checked { .el-checkbox input[type=checkbox]:checked {
background: url("checkbox.png")no-repeat center; background: url("../images/search.png")no-repeat center;
background-size: 100%; background-size: 100%;
} }
@ -218,7 +218,7 @@ input[type='checkbox'] {
} }
.el-checkbox input[type=radio]:checked { .el-checkbox input[type=radio]:checked {
background: url("checkbox.png")no-repeat center; background: url("../images/search.png")no-repeat center;
background-size: 100%; background-size: 100%;
} }
@ -248,7 +248,7 @@ input[type='radio'] {
} }
.el-checkbox input[type=radio]:checked { .el-checkbox input[type=radio]:checked {
background: url("checkbox.png")no-repeat center; background: url("../images/search.png")no-repeat center;
background-size: 100%; background-size: 100%;
} }

@ -1,4 +1,4 @@
@charset 'utf-8'; @charset "utf-8";
html{color:#000;background:#FFF;font-family:'Microsoft YaHei',sans-serif,Arial;} html{color:#000;background:#FFF;font-family:'Microsoft YaHei',sans-serif,Arial;}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td,strong{padding:0;margin:0;font-family:'Microsoft YaHei',sans-serif,Arial;} body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td,strong{padding:0;margin:0;font-family:'Microsoft YaHei',sans-serif,Arial;}
table{border-collapse:collapse;border-spacing:0;} table{border-collapse:collapse;border-spacing:0;}

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Before

Width:  |  Height:  |  Size: 7.1 KiB

After

Width:  |  Height:  |  Size: 7.1 KiB

Before

Width:  |  Height:  |  Size: 7.5 KiB

After

Width:  |  Height:  |  Size: 7.5 KiB

Before

Width:  |  Height:  |  Size: 8.6 KiB

After

Width:  |  Height:  |  Size: 8.6 KiB

Before

Width:  |  Height:  |  Size: 8.4 KiB

After

Width:  |  Height:  |  Size: 8.4 KiB

Before

Width:  |  Height:  |  Size: 4.8 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

Before

Width:  |  Height:  |  Size: 4.0 KiB

After

Width:  |  Height:  |  Size: 4.0 KiB

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

Before

Width:  |  Height:  |  Size: 22 KiB

After

Width:  |  Height:  |  Size: 22 KiB

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

Before

Width:  |  Height:  |  Size: 3.2 KiB

After

Width:  |  Height:  |  Size: 3.2 KiB

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 6.2 KiB

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 4.5 KiB

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

@ -7,9 +7,9 @@
<meta content="yes" name="apple-mobile-web-app-capable"/> <meta content="yes" name="apple-mobile-web-app-capable"/>
<meta content="black" name="apple-mobile-web-app-status-bar-style"/> <meta content="black" name="apple-mobile-web-app-status-bar-style"/>
<meta content="telephone=no" name="format-detection"/> <meta content="telephone=no" name="format-detection"/>
<link href="style.css" rel="stylesheet" type="text/css"/> <link href="css/index.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.min.js" ></script> <script type="text/javascript" src="js/jquery.min.js" ></script>
<script type="text/javascript" src="slider.js" ></script> <script type="text/javascript" src="js/slider.js" ></script>
</head> </head>
<body> <body>
@ -40,7 +40,7 @@
<div class="aui-palace clearfix"> <div class="aui-palace clearfix">
<a href="javascript:;" class="aui-palace-grid"> <a href="javascript:;" class="aui-palace-grid">
<div class="aui-palace-grid-icon"> <div class="aui-palace-grid-icon">
<img src="icon-item-001.jpg" alt=""> <img src="images/index-001.jpg" alt="">
</div> </div>
<div class="aui-palace-grid-text"> <div class="aui-palace-grid-text">
<h2>借款</h2> <h2>借款</h2>
@ -48,7 +48,7 @@
</a> </a>
<a href="javascript:;" class="aui-palace-grid"> <a href="javascript:;" class="aui-palace-grid">
<div class="aui-palace-grid-icon"> <div class="aui-palace-grid-icon">
<img src="icon-item-002.jpg" alt=""> <img src="images/index-002.jpg" alt="">
</div> </div>
<div class="aui-palace-grid-text"> <div class="aui-palace-grid-text">
<h2>还款</h2> <h2>还款</h2>
@ -56,7 +56,7 @@
</a> </a>
<a href="javascript:;" class="aui-palace-grid"> <a href="javascript:;" class="aui-palace-grid">
<div class="aui-palace-grid-icon"> <div class="aui-palace-grid-icon">
<img src="icon-item-003.jpg" alt=""> <img src="images/index-003.jpg" alt="">
</div> </div>
<div class="aui-palace-grid-text"> <div class="aui-palace-grid-text">
<h2>利息计算</h2> <h2>利息计算</h2>
@ -64,7 +64,7 @@
</a> </a>
<a href="javascript:;" class="aui-palace-grid"> <a href="javascript:;" class="aui-palace-grid">
<div class="aui-palace-grid-icon"> <div class="aui-palace-grid-icon">
<img src="icon-item-004.jpg" alt=""> <img src="images/index-004.jpg" alt="">
</div> </div>
<div class="aui-palace-grid-text"> <div class="aui-palace-grid-text">
<h2>账单</h2> <h2>账单</h2>

@ -7,7 +7,7 @@
<meta content="yes" name="apple-mobile-web-app-capable"/> <meta content="yes" name="apple-mobile-web-app-capable"/>
<meta content="black" name="apple-mobile-web-app-status-bar-style"/> <meta content="black" name="apple-mobile-web-app-status-bar-style"/>
<meta content="telephone=no" name="format-detection"/> <meta content="telephone=no" name="format-detection"/>
<link href="style.css" rel="stylesheet" type="text/css"/> <link href="css/informationCenter.css" rel="stylesheet" type="text/css"/>
</head> </head>
<body> <body>
@ -29,7 +29,7 @@
<div class="aui-layout"> <div class="aui-layout">
<a href="javascript:void(0);" class="aui-layout-item"> <a href="javascript:void(0);" class="aui-layout-item">
<div class="aui-layout-item-img"> <div class="aui-layout-item-img">
<img src="icon-item005.png" > <img src="images/informationCenter3.png" >
</div> </div>
<div class="aui-layout-item-text"> <div class="aui-layout-item-text">
<h4>消息提醒</h4> <h4>消息提醒</h4>
@ -38,7 +38,7 @@
</a> </a>
<a href="javascript:void(0);" class="aui-layout-item"> <a href="javascript:void(0);" class="aui-layout-item">
<div class="aui-layout-item-img"> <div class="aui-layout-item-img">
<img src="icon-item002.png"> <img src="images/informationCenter1.png">
</div> </div>
<div class="aui-layout-item-text"> <div class="aui-layout-item-text">
<h4>客服</h4> <h4>客服</h4>
@ -47,7 +47,7 @@
</a> </a>
<a href="javascript:void(0);" class="aui-layout-item"> <a href="javascript:void(0);" class="aui-layout-item">
<div class="aui-layout-item-img"> <div class="aui-layout-item-img">
<img src="icon-item005.png" > <img src="images/informationCenter3.png" >
</div> </div>
<div class="aui-layout-item-text"> <div class="aui-layout-item-text">
<h4>消息提醒</h4> <h4>消息提醒</h4>
@ -56,7 +56,7 @@
</a> </a>
<a href="javascript:void(0);" class="aui-layout-item"> <a href="javascript:void(0);" class="aui-layout-item">
<div class="aui-layout-item-img"> <div class="aui-layout-item-img">
<img src="icon-item004.png" > <img src="images/informationCenter2.png" >
</div> </div>
<div class="aui-layout-item-text"> <div class="aui-layout-item-text">
<h4>互动消息</h4> <h4>互动消息</h4>
@ -65,7 +65,7 @@
</a> </a>
<a href="javascript:void(0);" class="aui-layout-item"> <a href="javascript:void(0);" class="aui-layout-item">
<div class="aui-layout-item-img"> <div class="aui-layout-item-img">
<img src="icon-item005.png"> <img src="images/informationCenter3.png">
</div> </div>
<div class="aui-layout-item-text"> <div class="aui-layout-item-text">
<h4>通知消息</h4> <h4>通知消息</h4>

@ -0,0 +1,58 @@
var xmlHttp = null;//声明XMLHttpRequest
// 创建XMLHttpRequest对象
function createXMLHttpRequest() {
// 已创建XMLHttpRequest对象直接返回
if (xmlHttp != null)
return;
// 检测浏览器针对(FireFox、Chrome、Safari、Opera与IE7+)是否支持直接创建XMLHttpRequest
if (window.XMLHttpRequest) {
xmlHttp = new XMLHttpRequest();
// 检测否是IE浏览器
} else if (window.ActiveXObject) {
try {
// IE6
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
// IE5
xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
}
}
//发送请求
function sendRequest(){
// 创建异步发送请求对象
createXMLHttpRequest();
//非0、非null、true表示真
if (!xmlHttp){
alert("XMLHttpRequest对象创建失败!!");
return;
}
var str = document.getElementById("txtMessage").value;
/*GET
//初始化请求
xmlHttp.open("GET","AjaxMessageServlet?message="+str,true);
//设置回调函数
xmlHttp.onreadystatechange=showMessage;
xmlHttp.send(null);*/
//Post方式发送请求
xmlHttp.open("POST","AjaxMessageServlet",true);
xmlHttp.onreadystatechange=showMessage;
xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");//设置编码方式
xmlHttp.send("message="+str);
}
//回调函数
function showMessage(){
//判断就绪状态和响应状态码是否符合要求
if(xmlHttp.readyState==4&&xmlHttp.status==200) {
var result = xmlHttp.responseText;//接收服务器响应的文本
document.getElementById("myspan").innerHTL = result;
}
}

@ -6,8 +6,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge"> <meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no"> <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
<link rel="stylesheet" href="bootstrap.min.css" > <link rel="stylesheet" href="css/bootstrap.min.css" >
<link rel="stylesheet" href="style1.css"> <link rel="stylesheet" href="css/loan.css">
<title>输入贷款金额</title> <title>输入贷款金额</title>
</head> </head>
@ -16,7 +16,7 @@
<div class="row"> <div class="row">
<div class="container_logo"> <div class="container_logo">
<div class="play col-xs-10 col-sm-10 col-md-10 col-lg-10"> <div class="play col-xs-10 col-sm-10 col-md-10 col-lg-10">
<img src="logo.png" /> <img src="images/loan.png" />
</div> </div>
</div> </div>
</div> </div>
@ -62,8 +62,8 @@
</div> </div>
<div class="mask"></div> <div class="mask"></div>
</body> </body>
<script src="jquery.min.js"></script> <script src="js/jquery.min.js"></script>
<script src="bootstrap.min.js"></script> <script src="js/bootstrap.min.js"></script>
<script> <script>
var $amountInput = $('[type="number"]'); var $amountInput = $('[type="number"]');
var amount = ''; var amount = '';

@ -7,46 +7,7 @@
<meta content="yes" name="apple-mobile-web-app-capable"/> <meta content="yes" name="apple-mobile-web-app-capable"/>
<meta content="black" name="apple-mobile-web-app-status-bar-style"/> <meta content="black" name="apple-mobile-web-app-status-bar-style"/>
<meta content="telephone=no" name="format-detection"/> <meta content="telephone=no" name="format-detection"/>
<!--<link href="orderliststyle.css" rel="stylesheet" type="text/css"/>--> <link href="css/myOrders.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript">
window.onload(function requestData(){
$.ajax({
url: "/orderlist",
type: "post",
dataType: "json",
success: function(data){
/*这个方法里是ajax发送请求成功之后执行的代码*/
showData(data);//我们仅做数据展示
},
error: function(msg){
alert("ajax连接异常"+msg);
}
});
});
//展示数据
function showData(data) {
var str = "";//定义用于拼接的字符串
for (var i = 0; i < data.length; i++) {
str = " <a href=\"javascript:;\" class=\"aui-list-item\">\n" +
" <div class=\"aui-right-top\"> </div>\n" +
" <div class=\"aui-list-head\">"+data[i].checkNum+"</div>\n" +
" <div class=\"aui-flex\">\n" +
" <div class=\"aui-flex-box\">\n" +
" <h4>"+data[i].checkNum+"</h4>\n" +
" \n" +
" </div>\n" +
" <div class=\"aui-text-time\"> </div>\n" +
" <div class=\"aui-button-get\">\n" +
" <button>详情</button>\n" +
" </div>\n" +
" </div>\n" +
" <div class=\"aui-dotted\"> </div>\n" +
" </a>"
//追加到table中
$("#orderlist").append(str); }
}
</script>
</head> </head>
<body> <body>
@ -68,7 +29,7 @@
<div class="aui-pri-box"> <div class="aui-pri-box">
<div class="aui-flex"> <div class="aui-flex">
<div class="aui-pri-img"> <div class="aui-pri-img">
<img src="vip.png"> <img src="images/myOrders.png">
</div> </div>
<div class="aui-flex-box"> <div class="aui-flex-box">
<h2>用户 <em>XXX</em></h2> <h2>用户 <em>XXX</em></h2>
@ -76,7 +37,7 @@
<div class="aui-pri-button"> </div> <div class="aui-pri-button"> </div>
</div> </div>
</div> </div>
<div class="aui-list-box" id="orderlist"> <div class="aui-list-box">
<a href="javascript:;" class="aui-list-item"> <a href="javascript:;" class="aui-list-item">
<div class="aui-right-top"> </div> <div class="aui-right-top"> </div>
<div class="aui-list-head">订单1</div> <div class="aui-list-head">订单1</div>

@ -4,9 +4,9 @@
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=0.5, maximum-scale=2.0, user-scalable=yes"/> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=0.5, maximum-scale=2.0, user-scalable=yes"/>
<title>我的订单</title> <title>我的订单</title>
<link href="bootstrap.css" rel="stylesheet" type="text/css"/> <link href="css/bootstrap.css" rel="stylesheet" type="text/css"/>
<link href="home.css" rel="stylesheet" type="text/css"/> <link href="css/orders2.css" rel="stylesheet" type="text/css"/>
<link href="font_l6a0fwucxvzehfr.css" type="text/css"/> <link href="css/orders1.css" type="text/css"/>
<style type="text/css"> <style type="text/css">
.tb960x90 {display:none!important;display:none} .tb960x90 {display:none!important;display:none}
</style> </style>

@ -4,9 +4,9 @@
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=0.5, maximum-scale=2.0, user-scalable=yes"/> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=0.5, maximum-scale=2.0, user-scalable=yes"/>
<title>我的订单</title> <title>我的订单</title>
<link href="bootstrap.css" rel="stylesheet" type="text/css"/> <link href="css/bootstrap.css" rel="stylesheet" type="text/css"/>
<link href="home.css" rel="stylesheet" type="text/css"/> <link href="css/orders2.css" rel="stylesheet" type="text/css"/>
<link href="font_l6a0fwucxvzehfr.css" type="text/css"/> <link href="css/orders1.css" type="text/css"/>
<style type="text/css"> <style type="text/css">
.tb960x90 {display:none!important;display:none} .tb960x90 {display:none!important;display:none}
</style> </style>

@ -7,7 +7,7 @@
<meta content="yes" name="apple-mobile-web-app-capable"/> <meta content="yes" name="apple-mobile-web-app-capable"/>
<meta content="black" name="apple-mobile-web-app-status-bar-style"/> <meta content="black" name="apple-mobile-web-app-status-bar-style"/>
<meta content="telephone=no" name="format-detection"/> <meta content="telephone=no" name="format-detection"/>
<link href="style.css" rel="stylesheet" type="text/css"/> <link href="css/personalCenter.css" rel="stylesheet" type="text/css"/>
</head> </head>
<body> <body>
@ -30,7 +30,7 @@
<div class="aui-account-box"> <div class="aui-account-box">
<div class="aui-flex"> <div class="aui-flex">
<div class="aui-account-user"> <div class="aui-account-user">
<img src="user-logo-004.png" > <img src="images/personalCenter-user-logo.png" >
</div> </div>
<div class="aui-flex-box"> <div class="aui-flex-box">
<h2>李同学</h2> <h2>李同学</h2>
@ -48,19 +48,19 @@
<div class="aui-layout"> <div class="aui-layout">
<a href="javascript:;" class="aui-layout-item"> <a href="javascript:;" class="aui-layout-item">
<div class="aui-icon-img"> <div class="aui-icon-img">
<img src="icon-acc-001.png"> <img src="images/personalCenter1.png">
</div> </div>
<h2>待完成订单</h2> <h2>待完成订单</h2>
</a> </a>
<a href="javascript:;" class="aui-layout-item"> <a href="javascript:;" class="aui-layout-item">
<div class="aui-icon-img"> <div class="aui-icon-img">
<img src="icon-acc-002.png" > <img src="images/personalCenter2.png" >
</div> </div>
<h2>待还款订单</h2> <h2>待还款订单</h2>
</a> </a>
<a href="javascript:;" class="aui-layout-item"> <a href="javascript:;" class="aui-layout-item">
<div class="aui-icon-img"> <div class="aui-icon-img">
<img src="icon-acc-003.png" > <img src="images/personalCenter3.png" >
</div> </div>
<h2>全部订单</h2> <h2>全部订单</h2>
</a> </a>
@ -74,7 +74,7 @@
<div class="aui-layout"> <div class="aui-layout">
<a href="javascript:;" class="aui-layout-item"> <a href="javascript:;" class="aui-layout-item">
<div class="aui-icon-img"> <div class="aui-icon-img">
<img src="icon-acc-004.png" > <img src="images/personalCenter4.png" >
</div> </div>
<h2>还款提醒</h2> <h2>还款提醒</h2>
</a> </a>
@ -83,13 +83,13 @@
<a href="javascript:;" class="aui-layout-item"> <a href="javascript:;" class="aui-layout-item">
<div class="aui-icon-img"> <div class="aui-icon-img">
<img src="icon-acc-007.png"> <img src="images/personalCenter7.png">
</div> </div>
<h2>我的银行卡</h2> <h2>我的银行卡</h2>
</a> </a>
<a href="javascript:;" class="aui-layout-item"> <a href="javascript:;" class="aui-layout-item">
<div class="aui-icon-img"> <div class="aui-icon-img">
<img src="icon-acc-008.png" > <img src="images/personalCenter8.png" >
</div> </div>
<h2>我的流水</h2> <h2>我的流水</h2>
</a> </a>

@ -7,7 +7,7 @@
<meta content="yes" name="apple-mobile-web-app-capable"/> <meta content="yes" name="apple-mobile-web-app-capable"/>
<meta content="black" name="apple-mobile-web-app-status-bar-style"/> <meta content="black" name="apple-mobile-web-app-status-bar-style"/>
<meta content="telephone=no" name="format-detection"/> <meta content="telephone=no" name="format-detection"/>
<link href="style.css" rel="stylesheet" type="text/css"/> <link href="css/personalInformation.css" rel="stylesheet" type="text/css"/>
</head> </head>
<body> <body>

@ -7,9 +7,9 @@
<meta content="yes" name="apple-mobile-web-app-capable"/> <meta content="yes" name="apple-mobile-web-app-capable"/>
<meta content="black" name="apple-mobile-web-app-status-bar-style"/> <meta content="black" name="apple-mobile-web-app-status-bar-style"/>
<meta content="telephone=no" name="format-detection"/> <meta content="telephone=no" name="format-detection"/>
<link href="showstyle.css" rel="stylesheet" type="text/css"/> <link href="css/show.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery-1.8.3.min.js"></script> <script type="js/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="show.js"></script> <script type="js/show.js"></script>
</head> </head>
<body> <body>
@ -31,7 +31,7 @@
<div class="aui-pri-box"> <div class="aui-pri-box">
<div class="aui-flex"> <div class="aui-flex">
<div class="aui-pri-img"> <div class="aui-pri-img">
<img src="vip.png"> <img src="images/show.png">
</div> </div>
<div class="aui-flex-box"> <div class="aui-flex-box">
<h2>用户 <em>XXX</em></h2> <h2>用户 <em>XXX</em></h2>

@ -5,7 +5,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" /> <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
<title>产品展示</title> <title>产品展示</title>
<link rel="stylesheet" href="style.css" /> <link rel="stylesheet" href="css/search.css" />
</head> </head>
<body> <body>
@ -24,8 +24,8 @@
<input type="button" name="" id="btn2" value="确&nbsp;&nbsp;定" /> <input type="button" name="" id="btn2" value="确&nbsp;&nbsp;定" />
</div> </div>
<script type="text/javascript" src="jquery.min.js" ></script> <script type="text/javascript" src="js/jquery.min.js" ></script>
<script type="text/javascript" src="serch.js"></script> <script type="text/javascript" src="js/search.js"></script>
</body> </body>
</html> </html>

@ -3,15 +3,15 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, target-densitydpi=device-dpi" name="viewport" > <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, target-densitydpi=device-dpi" name="viewport" >
<link rel="stylesheet" type="text/css" href="reset.css" > <link rel="stylesheet" type="text/css" href="css/waitAuditing.css" >
<link rel="stylesheet" type="text/css" href="weichat.css"> <link rel="stylesheet" type="text/css" href="css/waitAuditing1.css">
<title>My Wallet</title> <title>My Wallet</title>
</head> </head>
<body> <body>
<div class="wrap"> <div class="wrap">
<div class="wallet-content"> <div class="wallet-content">
<div class="wallet-box"> <div class="wallet-box">
<img src="aq.png" > <img src="images/waitAuditing.png" >
<h2>您的订单已提交</h2> <h2>您的订单已提交</h2>
<h3>请耐心等候银行审批</h3> <h3>请耐心等候银行审批</h3>
Loading…
Cancel
Save