123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta content="yes" name="apple-mobile-web-app-capable">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0,minimum-scale=1.0,user-scalable=0" />
- <title>借款</title>
- <link rel="stylesheet" type="text/css" href="../common/reset.css"/>
- <script type="text/javascript" src="../common/jquery-2.1.0.js"></script>
- <script type="text/javascript">
- var viewport = document.querySelector("meta[name=viewport]")
- if (window.devicePixelRatio == 1) {
- viewport.setAttribute('content', 'width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no')
- }
- if (window.devicePixelRatio == 2) {
- viewport.setAttribute('content', 'width=device-width, initial-scale=0.5, maximum-scale=0.5, minimum-scale=0.5, user-scalable=no')
- }
- if (window.devicePixelRatio == 3) {
- viewport.setAttribute('content', 'width=device-width, initial-scale=0.333333333, maximum-scale=0.333333333, minimum-scale=0.333333333, user-scalable=no')
- }
- document.documentElement.style.fontSize = 100 * (document.documentElement.clientWidth/375) + "px";
- window.onresize = function(){
- document.documentElement.style.fontSize = 100 * (document.documentElement.clientWidth/375) + "px";
- }
- </script>
- <style>
- body{
- width: 100%;min-height: 100vh;background: #F4F4F4;
- }
- .container ul{
- background: #ffffff;
- }
- .container ul li{
- height: 0.6rem;width: 100%;border-bottom: 0.01rem solid #D8D8D8;line-height: 0.6rem;
- }
- .container ul li label{
- font-size: 0.15rem;color: #222222;width: 0.93rem;text-align: center;display: inline-block;
- }
- .container ul li input{
- border: none;font-size: 0.15rem;
- }
- button{
- width:1.94rem;
- height:0.40rem;
- background:#2C72E0;
- border-radius:0.2rem;
- color: #ffffff;
- font-size: 0.16rem;
- border: none;
- display: block;
- margin: 2rem auto 0;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <ul>
- <li><label>姓名</label><input placeholder="请输入真实姓名" value="王莹莹" disabled/></li>
- <li><label>身份证号</label><input placeholder="请输入身份证号" value="220403199103093960" disabled/></li>
- <li><label>手机号</label><input placeholder="请输入手机号" value="15313295256" disabled/></li>
- <li><label>现居地址</label><input placeholder="请填写详细居住地址"/></li>
- </ul>
- <button onclick="submission()">提交审核</button>
- </div>
- <!--提示弹框-->
- <div class="alert-info" style="display: none;">
- <!-- tip提示,2s后消失 -->
- <p></p>
- </div>
- </body>
- </html>
- <script>
- var qs = parseQueryString(window.location.href);
- $().ready(function () {
- if(qs.type == 3){
- $("button").css('background','#2C72E0')
- }
- if(qs.type == 2){
- $("button").css('background','#B7955A')
- }
- })
- function submission () {
- if(qs.type == 2){
- window.location.href='./examineIng.html?type=2'
- }else if(qs.type == 3){
- window.location.href='./examineIng.html?type=3'
- }else{
- window.location.href='./last.html'
- }
- }
- //获取地址栏参数
- function parseQueryString(url) {
- var urlObj = {};
- var reg = /([^?=&]+)=([^?=&]+)/g;
- url.replace(reg, function($0, $1, $2) {
- urlObj[$1] = decodeURIComponent($2);
- })
- return urlObj;
- }
- </script>
|