手机官网-页面更改
@ -1,128 +1,123 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title></title>
|
||||
<meta name="keywords" content="" />
|
||||
<meta name="description" content="" />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta charset="utf-8">
|
||||
<meta name="renderer" content="webkit">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
||||
<meta name="applicable-device" content="mobile">
|
||||
<link href="__CSS__/iconfont.css" rel="stylesheet" >
|
||||
<link href="__CSS__/common.css" rel="stylesheet" >
|
||||
<link href="__CSS__/unlr.css" rel="stylesheet" >
|
||||
<script src="__JS__/jquery-1.11.1.min.js"></script>
|
||||
|
||||
</head>
|
||||
<body class="unlr">
|
||||
<header class="header forget-header">
|
||||
<div class="">
|
||||
<a href="{:U('login')}" class="hbtn back"><i class="iconfont icon-drop-left"></i></a>
|
||||
<h1 class="caption">找回密码</h1>
|
||||
<extend name="Public/bases" />
|
||||
<block name="body">
|
||||
<link href="__CSS__/user.css" rel="stylesheet" >
|
||||
<script src="__JS__/jquery-1.11.3.min.js"></script>
|
||||
<script type="text/javascript" src="__JS__/getRem.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="__CSS__/reset.css">
|
||||
<link rel="stylesheet" type="text/css" href="__CSS__/name.css">
|
||||
<link rel="stylesheet" type="text/css" href="__CSS__/remove.css">
|
||||
<style>
|
||||
body {
|
||||
background: white;
|
||||
}
|
||||
</style>
|
||||
<div class="name">
|
||||
<!-- 子页公共头部 -->
|
||||
<div class="subpage-heard">找回密码
|
||||
<a href="javascript:window.history.go(-1);" class="arrows"></a>
|
||||
</div>
|
||||
<div class="remove-info">
|
||||
|
||||
<div class="name-input">
|
||||
<div class="name-inputBox">
|
||||
<img src="__IMG__/shoujibangding.png" alt="">
|
||||
<div>手机号</div>
|
||||
</div>
|
||||
<input type="text" placeholder="请输入手机号" style="padding: 0" name="mobile" id="mobile" value="{$user['phone']}">
|
||||
</div>
|
||||
</header>
|
||||
<div class="occupy"></div>
|
||||
<section class="trunker">
|
||||
<section class="container">
|
||||
<div class="t-form forget-form">
|
||||
<form action="{:U('forget')}" method="post" class="forget-box">
|
||||
<div class="form-group clearfix">
|
||||
<div class="input-group clearfix">
|
||||
<input type="text" name="mobile" id="mobile" class="txt" placeholder="请输入手机号码">
|
||||
<a href="javascript:;" class="getcode jsgetcode">获取验证码</a>
|
||||
</div>
|
||||
<div class="input-group clearfix">
|
||||
<input type="text" id="code" name="code" class="txt" placeholder="请输入验证码">
|
||||
</div>
|
||||
</div>
|
||||
<div class="btn-group">
|
||||
<input type="button" class="submit" value="下一步">
|
||||
</div>
|
||||
<div>
|
||||
<p class="forget-notice">
|
||||
通过手机号找回密码只适用于手机号注册的账号<br>用户名注册的账号可
|
||||
<a href="http://wpa.qq.com/msgrd?v=3&uin={:C('APP_QQ')}&site=qq&menu=yes" target="_blank">联系客服</a>
|
||||
</p>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<div class="remove-input">
|
||||
<div class="remove-inputBox">
|
||||
<img src="__IMG__/mingzibianji.png" alt="">
|
||||
<div>验证码</div>
|
||||
<input type="text" placeholder="请输入验证码" id="code" name="code" value="">
|
||||
</div>
|
||||
</section>
|
||||
</section>
|
||||
<div class="popmsg pop-dialog"></div>
|
||||
<script src="__JS__/pop.lwx.min.js"></script>
|
||||
<script src="__JS__/common.js"></script>
|
||||
<script>
|
||||
$(function() {
|
||||
var pmsg = $('.popmsg').pop();
|
||||
<div class="code g-btn jsgetcode" id="sendSafeCode">获取验证码</div>
|
||||
</div>
|
||||
<div class="save submit">下一步</div>
|
||||
<div>
|
||||
<p class="forget-notice" style="font-size: 0.28rem;text-align: center;line-height: 0.4rem;">
|
||||
通过手机号找回密码只适用于手机号注册的账号<br>用户名注册的账号可
|
||||
<a href="http://wpa.qq.com/msgrd?v=3&uin={:C('APP_QQ')}&site=qq&menu=yes"
|
||||
target="_blank" style="color: #21B1EB;">联系客服</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
$('.jsgetcode').click(function() {
|
||||
var tis = this,that = $(tis);
|
||||
if (that.hasClass('disabled')) {return false;}
|
||||
var mobile = $.trim($('#mobile').val());
|
||||
if (mobile) {
|
||||
var is_true = true;
|
||||
if (/^1[0-9]{10}$/.test(mobile)) {
|
||||
$.ajax({
|
||||
url:"{:U('forget_send_msg')}",
|
||||
type:"POST",
|
||||
dataType:"json",
|
||||
async: false,
|
||||
data:{account:mobile},
|
||||
success:function(result){
|
||||
if(result.status == 0){
|
||||
is_true = false;
|
||||
}
|
||||
pmsg.msg(result.msg);
|
||||
},
|
||||
error:function(){
|
||||
alert('服务器异常');
|
||||
<div class="popmsg pop-dialog"></div>
|
||||
<script src="__JS__/pop.lwx.min.js"></script>
|
||||
<script src="__JS__/common.js"></script>
|
||||
<script>
|
||||
$(function() {
|
||||
var pmsg = $('.popmsg').pop();
|
||||
|
||||
$('.jsgetcode').click(function() {
|
||||
var tis = this,that = $(tis);
|
||||
if (that.hasClass('disabled')) {return false;}
|
||||
var mobile = $.trim($('#mobile').val());
|
||||
if (mobile) {
|
||||
var is_true = true;
|
||||
if (/^1[0-9]{10}$/.test(mobile)) {
|
||||
$.ajax({
|
||||
url:"{:U('forget_send_msg')}",
|
||||
type:"POST",
|
||||
dataType:"json",
|
||||
async: false,
|
||||
data:{account:mobile},
|
||||
success:function(result){
|
||||
if(result.status == 0){
|
||||
is_true = false;
|
||||
}
|
||||
})
|
||||
if(is_true){
|
||||
clock(tis);
|
||||
pmsg.msg(result.msg);
|
||||
},
|
||||
error:function(){
|
||||
alert('服务器异常');
|
||||
}
|
||||
} else {
|
||||
pmsg.msg('请输入正确的手机号码');
|
||||
})
|
||||
if(is_true){
|
||||
clock(tis);
|
||||
}
|
||||
} else {
|
||||
pmsg.msg('请输入手机号码');
|
||||
pmsg.msg('请输入正确的手机号码');
|
||||
}
|
||||
return false;
|
||||
});
|
||||
} else {
|
||||
pmsg.msg('请输入手机号码');
|
||||
}
|
||||
return false;
|
||||
});
|
||||
|
||||
$(".submit").click(function(){
|
||||
var mobile = $.trim($("#mobile").val());
|
||||
var code = $.trim($("#code").val());
|
||||
if(mobile.length == 0){
|
||||
pmsg.msg('请输入手机号码');
|
||||
return false;
|
||||
}
|
||||
if(code.length == 0){
|
||||
pmsg.msg('请输入验证码');
|
||||
return false;
|
||||
}
|
||||
$.ajax({
|
||||
url:"{:U('forget')}",
|
||||
type:"POST",
|
||||
dataType:"json",
|
||||
data:{phone:$.trim($('#mobile').val()),code:$("#code").val()},
|
||||
success:function(result){
|
||||
pmsg.msg(result.info);
|
||||
if(result.status == 1){
|
||||
setTimeout(function () {
|
||||
window.location.href = result.url;
|
||||
}, 2000);
|
||||
}
|
||||
},
|
||||
error:function(){
|
||||
alert("服务器异常");
|
||||
$(".submit").click(function(){
|
||||
var mobile = $.trim($("#mobile").val());
|
||||
var code = $.trim($("#code").val());
|
||||
if(mobile.length == 0){
|
||||
pmsg.msg('请输入手机号码');
|
||||
return false;
|
||||
}
|
||||
if(code.length == 0){
|
||||
pmsg.msg('请输入验证码');
|
||||
return false;
|
||||
}
|
||||
$.ajax({
|
||||
url:"{:U('forget')}",
|
||||
type:"POST",
|
||||
dataType:"json",
|
||||
data:{phone:$.trim($('#mobile').val()),code:$("#code").val()},
|
||||
success:function(result){
|
||||
if(result.status == 1){
|
||||
pmsg.msg("验证成功");
|
||||
setTimeout(function () {
|
||||
window.location.href = result.url;
|
||||
}, 2000);
|
||||
} else {
|
||||
pmsg.msg(result.msg);
|
||||
}
|
||||
})
|
||||
},
|
||||
error:function(){
|
||||
alert("服务器异常");
|
||||
}
|
||||
})
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
})
|
||||
});
|
||||
</script>
|
||||
</block>
|
@ -1,88 +1,83 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title></title>
|
||||
<meta name="keywords" content="" />
|
||||
<meta name="description" content="" />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<meta charset="utf-8">
|
||||
<meta name="renderer" content="webkit">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
||||
<meta name="applicable-device" content="mobile">
|
||||
<link href="__CSS__/iconfont.css" rel="stylesheet" >
|
||||
<link href="__CSS__/common.css" rel="stylesheet" >
|
||||
<link href="__CSS__/unlr.css" rel="stylesheet" >
|
||||
<script src="__JS__/jquery-1.11.1.min.js"></script>
|
||||
|
||||
</head>
|
||||
<body class="unlr">
|
||||
<header class="header forget-header">
|
||||
<div class="">
|
||||
<a href="{:U('forget')}" class="hbtn back"><i class="iconfont icon-drop-left"></i></a>
|
||||
<h1 class="caption">设置新密码</h1>
|
||||
</div>
|
||||
</header>
|
||||
<div class="occupy"></div>
|
||||
<section class="trunker">
|
||||
<section class="container">
|
||||
<div class="t-form forget-form">
|
||||
<form action="" class="forget-box">
|
||||
<div class="form-group clearfix">
|
||||
<div class="input-group clearfix">
|
||||
<input type="password" id="new_pwd" name="new_pwd" class="txt" placeholder="6-12个字符" minlength="6" maxlength="12">
|
||||
</div>
|
||||
<div class="input-group clearfix">
|
||||
<input type="password" id="new_pwd_confirm" name="new_pwd_confirm" class="txt" placeholder="再次输入新密码" maxlength="12">
|
||||
<extend name="Public/bases" />
|
||||
<block name="body" >
|
||||
<link href="__CSS__/user.css" rel="stylesheet" >
|
||||
<script src="__JS__/jquery-1.11.3.min.js"></script>
|
||||
<script type="text/javascript" src="__JS__/getRem.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="__CSS__/reset.css">
|
||||
<link rel="stylesheet" type="text/css" href="__CSS__/name.css">
|
||||
<section class="trunker">
|
||||
<section class="container">
|
||||
<form id="form" action="" method="post" onsubmit="return false" class="">
|
||||
<div class="name">
|
||||
<!-- 子页公共头部 -->
|
||||
<div class="subpage-heard">设置新密码
|
||||
<a href="javascript:window.history.go(-1);" class="arrows"></a>
|
||||
</div>
|
||||
<div class="name-info">
|
||||
|
||||
<div class="name-input">
|
||||
<div class="name-inputBox">
|
||||
<img src="__IMG__/xiugaimima.png" alt="">
|
||||
<div>新密码</div>
|
||||
</div>
|
||||
<input type="password" placeholder="请输入新密码" style="padding: 0" name="new_pwd" id="new_pwd" value="" >
|
||||
</div>
|
||||
<div class="btn-group">
|
||||
<input type="hidden" id="phone" name="phone" value="{:I('phone')}">
|
||||
<input type="button" class="submit" value="完成">
|
||||
|
||||
<div class="name-input">
|
||||
<div class="name-inputBox">
|
||||
<img src="__IMG__/xiugaimima.png" alt="">
|
||||
<div>确认密码</div>
|
||||
</div>
|
||||
<input type="password" placeholder="请输入确认密码" style="padding: 0" name="new_pwd_confirm" id="new_pwd_confirm" value="">
|
||||
</div>
|
||||
</form>
|
||||
<input type="hidden" id="phone" name="phone" value="{:I('phone')}">
|
||||
<div class="save submit">保存修改</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</form>
|
||||
</section>
|
||||
<div class="popmsg pop-dialog"></div>
|
||||
<script src="__JS__/pop.lwx.min.js"></script>
|
||||
<script src="__JS__/common.js"></script>
|
||||
<script>
|
||||
$(function() {
|
||||
var pmsg = $('.popmsg').pop();
|
||||
$(".submit").click(function(){
|
||||
var new_pwd = $.trim($("#new_pwd").val());
|
||||
var new_pwd_confirm = $.trim($("#new_pwd_confirm").val());
|
||||
if(new_pwd.length < 6 || new_pwd.length > 12){
|
||||
pmsg.msg('密码长度6-12个字符');
|
||||
return false;
|
||||
}
|
||||
if(new_pwd != new_pwd_confirm){
|
||||
pmsg.msg('两次密码输入不一致');
|
||||
return false;
|
||||
}
|
||||
|
||||
$.ajax({
|
||||
url:"{:U('forget1')}",
|
||||
type:"POST",
|
||||
dataType:"json",
|
||||
data:{phone:$("#phone").val(),new_pwd:new_pwd},
|
||||
success:function(result){
|
||||
pmsg.msg(result.info);
|
||||
if(result.status == 1){
|
||||
setTimeout(function () {
|
||||
window.location.href = result.url;
|
||||
}, 2000);
|
||||
}
|
||||
},
|
||||
error:function(){
|
||||
alert("服务器异常");
|
||||
</section>
|
||||
<div class="popmsg pop-dialog"></div>
|
||||
<script src="__JS__/pop.lwx.min.js"></script>
|
||||
<script src="__JS__/common.js"></script>
|
||||
<script>
|
||||
$(function() {
|
||||
var pmsg = $('.popmsg').pop();
|
||||
$(".submit").click(function(){
|
||||
var new_pwd = $.trim($("#new_pwd").val());
|
||||
var phone = $.trim($("#phone").val());
|
||||
var new_pwd_confirm = $.trim($("#new_pwd_confirm").val());
|
||||
if(new_pwd.length < 6 || new_pwd.length > 12){
|
||||
pmsg.msg('密码长度6-12个字符');
|
||||
return false;
|
||||
}
|
||||
if(new_pwd != new_pwd_confirm){
|
||||
pmsg.msg('两次密码输入不一致');
|
||||
return false;
|
||||
}
|
||||
|
||||
$.ajax({
|
||||
url:"{:U('forget1')}",
|
||||
type:"POST",
|
||||
dataType:"json",
|
||||
data:{
|
||||
phone:phone,
|
||||
new_pwd:new_pwd
|
||||
},
|
||||
success:function(result){
|
||||
pmsg.msg(result.info);
|
||||
if(result.status == 1){
|
||||
setTimeout(function () {
|
||||
window.location.href = result.url;
|
||||
}, 2000);
|
||||
}
|
||||
})
|
||||
},
|
||||
error:function(){
|
||||
alert("服务器异常");
|
||||
}
|
||||
})
|
||||
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
})
|
||||
|
||||
});
|
||||
</script>
|
||||
</block>
|
@ -1,112 +1,119 @@
|
||||
<extend name="Public/bases" />
|
||||
<block name="body" >
|
||||
<link href="__CSS__/user.css" rel="stylesheet" >
|
||||
<body class="">
|
||||
<header class="header">
|
||||
<div class="">
|
||||
<a href="{:U('User/userset')}" class="hbtn back"><i class="iconfont icon-drop-left"></i></a>
|
||||
<h1 class="caption">实名认证</h1>
|
||||
</div>
|
||||
</header>
|
||||
<div class="occupy"></div>
|
||||
<section class="trunker">
|
||||
<section class="container">
|
||||
<if condition='$user["age_status"] lt 2'>
|
||||
<form id='form' action="" method="post" class="">
|
||||
<div class="t-table user-auth-list">
|
||||
<script src="__JS__/jquery-1.11.3.min.js"></script>
|
||||
<script type="text/javascript" src="__JS__/getRem.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="__CSS__/reset.css">
|
||||
<link rel="stylesheet" type="text/css" href="__CSS__/name.css">
|
||||
<section class="trunker">
|
||||
<section class="container">
|
||||
<form id="form" action="" method="post" onsubmit="return false" class="">
|
||||
<div class="name">
|
||||
<!-- 子页公共头部 -->
|
||||
<div class="subpage-heard">实名认证
|
||||
<a href="javascript:window.history.go(-1);" class="arrows"></a>
|
||||
</div>
|
||||
|
||||
<?php if(!empty($user['real_name'])){ ?>
|
||||
<div class="name-input">
|
||||
<div class="name-inputBox">
|
||||
<img src="__IMG__/shimingrenzhengmoren.png" alt="">
|
||||
<div>真实姓名</div>
|
||||
</div>
|
||||
<input type="text" placeholder="请输入真实姓名" style="padding: 0;color: #292929" name="real_name" id="real_name" value="王大锤">
|
||||
</div>
|
||||
<?php }else{ ?>
|
||||
<div class="name-input">
|
||||
<div class="name-inputBox">
|
||||
<img src="__IMG__/shimingrenzhengmoren.png" alt="">
|
||||
<div>真实姓名</div>
|
||||
</div>
|
||||
<input type="text" placeholder="请输入真实姓名" style="padding: 0" name="real_name" id="real_name" value="{$user['real_name']}">
|
||||
</div>
|
||||
<?php }?>
|
||||
|
||||
|
||||
<ul class="table clearfix">
|
||||
<li class="table-row">
|
||||
<span class="table-cell">真实姓名</span>
|
||||
<span class="table-cell">
|
||||
<input type="text" class="txt" id='real_name' name="real_name" value="{$user['real_name']}" placeholder="请如实填写" minlength="2">
|
||||
</span>
|
||||
</li>
|
||||
<li class="table-row">
|
||||
<span class="table-cell">证件号码</span>
|
||||
<span class="table-cell">
|
||||
<input type="text" class="txt" id='idcard' name="idcard" value="{$user['idcard']}" placeholder="请填写身份证号" maxlength="18">
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<?php if(!empty($user['idcard'])){ ?>
|
||||
<div class="name-input">
|
||||
<div class="name-inputBox">
|
||||
<img src="__IMG__/haoma.png" alt="">
|
||||
<div>证件号码</div>
|
||||
</div>
|
||||
<input type="text" placeholder="请输入证件号码" style="padding: 0;color: #292929" name="idcard" id="idcard" value="350516518718718748">
|
||||
</div>
|
||||
<div class="btnbox user-set-btnbox">
|
||||
<input type="button" class="btn jssubmit" value="提交">
|
||||
<?php }else{ ?>
|
||||
<div class="name-input">
|
||||
<div class="name-inputBox">
|
||||
<img src="__IMG__/haoma.png" alt="">
|
||||
<div>证件号码</div>
|
||||
</div>
|
||||
<input type="text" placeholder="请输入证件号码" style="padding: 0" name="idcard" id="idcard" value="{$user['idcard']}">
|
||||
</div>
|
||||
</form>
|
||||
<elseif condition="$user['third_authentication'] eq 1" />
|
||||
<span class="user-auth-list-title">您已进行过支付宝实名认证</span>
|
||||
<else/>
|
||||
<form action="" method="post" class="">
|
||||
<div class="t-table user-auth-list">
|
||||
<span class="user-auth-list-title">您已进行过实名认证</span>
|
||||
<ul class="table clearfix">
|
||||
<li class="table-row"><span class="table-cell">真实姓名</span><span class="table-cell">{:substr_cut($user['real_name'],'*')}</span></li>
|
||||
<li class="table-row"><span class="table-cell">证件号码</span><span class="table-cell">{:substr_replace($user['idcard'],'****************',1,16)}</span></li>
|
||||
</ul>
|
||||
<?php }?>
|
||||
|
||||
|
||||
<div class="save jssubmit">保存修改</div>
|
||||
</div>
|
||||
</form>
|
||||
</if>
|
||||
</section>
|
||||
|
||||
</div>
|
||||
</form>
|
||||
</section>
|
||||
<div class="popmsg pop-dialog"></div>
|
||||
<script src="__JS__/pop.lwx.min.js"></script>
|
||||
<script src="__STATIC__/isCardID.js"></script>
|
||||
<script>
|
||||
$(function() {
|
||||
$('.jssubmit').click(function() {
|
||||
var real_name = $.trim($('#real_name').val());
|
||||
var idcard = $.trim($('#idcard').val());
|
||||
var pmsg = $('.popmsg').pop();
|
||||
if(real_name == ""){
|
||||
pmsg.msg("请输入真实姓名");
|
||||
$('#real_name').focus();
|
||||
return false;
|
||||
}
|
||||
</section>
|
||||
<div class="popmsg pop-dialog"></div>
|
||||
<script src="__JS__/pop.lwx.min.js"></script>
|
||||
<script src="__STATIC__/isCardID.js"></script>
|
||||
<script>
|
||||
$(function() {
|
||||
$('.jssubmit').click(function() {
|
||||
var real_name = $.trim($('#real_name').val());
|
||||
var idcard = $.trim($('#idcard').val());
|
||||
var pmsg = $('.popmsg').pop();
|
||||
if(real_name == ""){
|
||||
pmsg.msg("请输入真实姓名");
|
||||
$('#real_name').focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
if(idcard.length == 0){
|
||||
pmsg.msg("身份证号码不能为空");
|
||||
$('#idcard').focus();
|
||||
return false;
|
||||
}
|
||||
if(idcard.length == 0){
|
||||
pmsg.msg("身份证号码不能为空");
|
||||
$('#idcard').focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
if(real_name.length <2){
|
||||
pmsg.msg("真实姓名必须大于两个字");
|
||||
$('#real_name').focus();
|
||||
return false;
|
||||
}
|
||||
if(real_name.length <2){
|
||||
pmsg.msg("真实姓名必须大于两个字");
|
||||
$('#real_name').focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
var reg = /^[\u4E00-\u9FA5]+$/;
|
||||
if(reg.test(real_name) == false){
|
||||
pmsg.msg("输入姓名不合法");
|
||||
$('#real_name').focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
$.ajax({
|
||||
cache:true,
|
||||
type:'post',
|
||||
url:"{:U('User/userauth')}",
|
||||
data:$('#form').serialize(),
|
||||
dataType:'json',
|
||||
success:function(result){
|
||||
pmsg.msg(result.info);
|
||||
if(result.url !=''){
|
||||
setTimeout(function () {
|
||||
window.location.href = result.url;
|
||||
}, 2000);
|
||||
|
||||
}
|
||||
},
|
||||
error:function(){
|
||||
alert("错误")
|
||||
}
|
||||
})
|
||||
});
|
||||
var reg = /^[\u4E00-\u9FA5]+$/;
|
||||
if(reg.test(real_name) == false){
|
||||
pmsg.msg("输入姓名不合法");
|
||||
$('#real_name').focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
$.ajax({
|
||||
cache:true,
|
||||
type:'post',
|
||||
url:"{:U('User/userauth')}",
|
||||
data:$('#form').serialize(),
|
||||
dataType:'json',
|
||||
success:function(result){
|
||||
pmsg.msg(result.info);
|
||||
if(result.url !='' && result.status){
|
||||
setTimeout(function () {
|
||||
window.location.href = result.url;
|
||||
}, 2000);
|
||||
}
|
||||
},
|
||||
error:function(){
|
||||
alert("错误")
|
||||
}
|
||||
})
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
|
||||
|
||||
});
|
||||
</script>
|
||||
</block>
|
@ -1,84 +1,88 @@
|
||||
<extend name="Public/bases" />
|
||||
<block name="body" >
|
||||
<link href="__CSS__/user.css" rel="stylesheet" >
|
||||
<body class="">
|
||||
<header class="header">
|
||||
<div class="">
|
||||
<a href="{:U('User/userset')}" class="hbtn back"><i class="iconfont icon-drop-left"></i></a>
|
||||
<h1 class="caption">修改密码</h1>
|
||||
</div>
|
||||
</header>
|
||||
<div class="occupy"></div>
|
||||
<link href="__CSS__/user.css" rel="stylesheet" >
|
||||
<script src="__JS__/jquery-1.11.3.min.js"></script>
|
||||
<script type="text/javascript" src="__JS__/getRem.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="__CSS__/reset.css">
|
||||
<link rel="stylesheet" type="text/css" href="__CSS__/name.css">
|
||||
<section class="trunker">
|
||||
<section class="container">
|
||||
<form id='form' action="" method="post">
|
||||
<div class="t-table user-auth-list">
|
||||
<ul class="table clearfix">
|
||||
<li class="table-row">
|
||||
<span class="table-cell">原始密码</span>
|
||||
<span class="table-cell">
|
||||
<input type="password" class="txt" id="old_pwd" name="old_pwd" placeholder="请输入原始密码" maxlength="12">
|
||||
</span>
|
||||
</li>
|
||||
<li class="table-row">
|
||||
<span class="table-cell">新密码</span>
|
||||
<span class="table-cell">
|
||||
<input type="password" class="txt" id="new_pwd" name="new_pwd" placeholder="请填写新密码" maxlength="12">
|
||||
</span>
|
||||
</li>
|
||||
<li class="table-row">
|
||||
<span class="table-cell">确认密码</span>
|
||||
<span class="table-cell">
|
||||
<input type="password" class="txt" id="com_pwd" name="com_pwd" placeholder="请再次确认密码" maxlength="12">
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="btnbox user-set-btnbox">
|
||||
<input type="button" class="btn jssubmit" value="完成">
|
||||
</div>
|
||||
</form>
|
||||
</section>
|
||||
<section class="container">
|
||||
<form id="form" action="" method="post" onsubmit="return false" class="">
|
||||
<div class="name">
|
||||
<!-- 子页公共头部 -->
|
||||
<div class="subpage-heard">修改密码
|
||||
<a href="javascript:window.history.go(-1);" class="arrows"></a>
|
||||
</div>
|
||||
<div class="name-info">
|
||||
|
||||
<div class="name-input">
|
||||
<div class="name-inputBox">
|
||||
<img src="__IMG__/xiugaimima.png" alt="">
|
||||
<div>原始密码</div>
|
||||
</div>
|
||||
<input type="text" placeholder="请输入原始密码" style="padding: 0" name="old_pwd" id="old_pwd" value="">
|
||||
</div>
|
||||
|
||||
<div class="name-input">
|
||||
<div class="name-inputBox">
|
||||
<img src="__IMG__/xiugaimima.png" alt="">
|
||||
<div>新密码</div>
|
||||
</div>
|
||||
<input type="text" placeholder="请输入新密码" style="padding: 0" name="new_pwd" id="new_pwd" value="">
|
||||
</div>
|
||||
|
||||
<div class="name-input">
|
||||
<div class="name-inputBox">
|
||||
<img src="__IMG__/xiugaimima.png" alt="">
|
||||
<div>确认密码</div>
|
||||
</div>
|
||||
<input type="text" placeholder="请输入确认密码" style="padding: 0" name="com_pwd" id="com_pwd" value="">
|
||||
</div>
|
||||
|
||||
<div class="save jssubmit">保存修改</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</section>
|
||||
</section>
|
||||
<div class="popmsg pop-dialog"></div>
|
||||
<script src="__JS__/pop.lwx.min.js"></script>
|
||||
<script>
|
||||
$(function() {
|
||||
$('.jssubmit').click(function() {
|
||||
var pmsg = $('.popmsg').pop();
|
||||
if($.trim($("#old_pwd").val()) == ''){
|
||||
pmsg.msg('原始密码不能为空');
|
||||
return false;
|
||||
}
|
||||
$(function() {
|
||||
$('.jssubmit').click(function() {
|
||||
var pmsg = $('.popmsg').pop();
|
||||
if($.trim($("#old_pwd").val()) == ''){
|
||||
pmsg.msg('原始密码不能为空');
|
||||
return false;
|
||||
}
|
||||
|
||||
if($.trim($("#new_pwd").val()).length < 6 || $.trim($("#new_pwd").val()).length > 12){
|
||||
pmsg.msg('密码长度6-12个字符');
|
||||
return false;
|
||||
}
|
||||
if($.trim($("#new_pwd").val()).length < 6 || $.trim($("#new_pwd").val()).length > 12){
|
||||
pmsg.msg('密码长度6-12个字符');
|
||||
return false;
|
||||
}
|
||||
|
||||
if($.trim($("#new_pwd").val()) != $.trim($("#com_pwd").val())){
|
||||
pmsg.msg('两次密码输入不一致');
|
||||
return false;
|
||||
}
|
||||
$.ajax({
|
||||
url:"{:U('User/userpassword')}",
|
||||
type:"POST",
|
||||
dataType:"json",
|
||||
data:$("#form").serialize(),
|
||||
success:function(result){
|
||||
pmsg.msg(result.info);
|
||||
if(result.url != ''){
|
||||
setTimeout(function () {
|
||||
window.location.href = result.url;
|
||||
}, 2000);
|
||||
if($.trim($("#new_pwd").val()) != $.trim($("#com_pwd").val())){
|
||||
pmsg.msg('两次密码输入不一致');
|
||||
return false;
|
||||
}
|
||||
},
|
||||
error:function(){
|
||||
alert('错误');
|
||||
}
|
||||
})
|
||||
$.ajax({
|
||||
url:"{:U('User/userpassword')}",
|
||||
type:"POST",
|
||||
dataType:"json",
|
||||
data:$("#form").serialize(),
|
||||
success:function(result){
|
||||
pmsg.msg(result.info);
|
||||
if(result.url != ''){
|
||||
setTimeout(function () {
|
||||
window.location.href = result.url;
|
||||
}, 2000);
|
||||
}
|
||||
},
|
||||
error:function(){
|
||||
alert('错误');
|
||||
}
|
||||
})
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</block>
|
@ -1,125 +1,148 @@
|
||||
<extend name="Public/bases" />
|
||||
<block name="body" >
|
||||
<block name="body">
|
||||
<link href="__CSS__/user.css" rel="stylesheet" >
|
||||
<body class="">
|
||||
<header class="header">
|
||||
<div class="">
|
||||
<a href="{:U('User/userset')}" class="hbtn back"><i class="iconfont icon-drop-left"></i></a>
|
||||
<h1 class="caption"><empty name="user.phone">绑定手机<else/>解除绑定</empty></h1>
|
||||
<script src="__JS__/jquery-1.11.3.min.js"></script>
|
||||
<script type="text/javascript" src="__JS__/getRem.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="__CSS__/reset.css">
|
||||
<link rel="stylesheet" type="text/css" href="__CSS__/name.css">
|
||||
<link rel="stylesheet" type="text/css" href="__CSS__/remove.css">
|
||||
<style>
|
||||
body {
|
||||
background: white;
|
||||
}
|
||||
</style>
|
||||
<div class="name">
|
||||
<!-- 子页公共头部 -->
|
||||
<div class="subpage-heard"><empty name="user.phone">绑定手机<else/>解除绑定</empty>
|
||||
<a href="javascript:window.history.go(-1);" class="arrows"></a>
|
||||
</div>
|
||||
<div class="remove-info">
|
||||
|
||||
<form id='form' action="" method="post" class="">
|
||||
|
||||
<?php if(!empty($user['phone'])){ ?>
|
||||
<div class="remove-input">
|
||||
<div class="remove-inputBox">
|
||||
<img src="__IMG__/shoujibangding.png" alt="">
|
||||
<div>手机号</div>
|
||||
</div>
|
||||
<div style="color: #292929">{$user['phone']}</div>
|
||||
<input type="hidden" name="phone" id="phone" value="{$user['phone']}">
|
||||
</div>
|
||||
</header>
|
||||
<div class="occupy"></div>
|
||||
<section class="trunker">
|
||||
<section class="container">
|
||||
<form id='form' action="" method="post" class="">
|
||||
<div class="t-table user-auth-list">
|
||||
<ul class="table clearfix">
|
||||
<li class="table-row">
|
||||
<span class="table-cell">手机号</span>
|
||||
<span class="table-cell">
|
||||
<input type="text" class="txt" id='phone' name="phone" value="{$user['phone']}" placeholder="请输入正确格式" <if condition="$user['phone'] neq ''"> readonly = "readonly" class="w-input" <else/> class="w-input cheackinput"</if>>
|
||||
</span>
|
||||
</li>
|
||||
<li class="table-row">
|
||||
<span class="table-cell">短信验证码</span>
|
||||
<span class="table-cell">
|
||||
<input type="text" class="w-input cheackinput" name="scode" id="scode"><input type="button" class="g-btn" id="sendSafeCode" value="获取短信验证码">
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="btnbox user-set-btnbox">
|
||||
<input type="button" class="btn jssubmit" value="提交">
|
||||
</div>
|
||||
</form>
|
||||
</section>
|
||||
</section>
|
||||
<div class="popmsg pop-dialog"></div>
|
||||
<script src="__JS__/pop.lwx.min.js"></script>
|
||||
<script>
|
||||
$(function() {
|
||||
$('#sendSafeCode').on('click',function() {
|
||||
var jphone = $('#phone'),phone = $.trim(jphone.val()), that = $(this);
|
||||
var pmsg = $('.popmsg').pop();
|
||||
if (phone == '') {
|
||||
pmsg.msg("手机号不能为空");
|
||||
return false;
|
||||
}
|
||||
if (phone.length !== 11 || !(/^[1][35789][0-9]{9}$/.test(phone))) {
|
||||
pmsg.msg("格式不正确");
|
||||
return false;
|
||||
}
|
||||
$.ajax({
|
||||
type:'post',
|
||||
dataType:'json',
|
||||
data:'phone='+phone,
|
||||
url:'{:U("sendvcode")}',
|
||||
success:function(data) {
|
||||
switch (parseInt(data.status)) {
|
||||
case 1: {
|
||||
r(1);
|
||||
};
|
||||
case 0:{
|
||||
pmsg.msg(data.msg);
|
||||
}
|
||||
break;
|
||||
}
|
||||
},
|
||||
error:function() {
|
||||
alert('服务器开小差了,请稍后再试。');
|
||||
}
|
||||
});
|
||||
var r = function(i, t) {
|
||||
if (i>0) {
|
||||
var r = 59;
|
||||
e='#sendSafeCode';
|
||||
$(e).removeClass('g-btn').addClass('g-btntn');
|
||||
var a = setInterval(function() {
|
||||
r--;
|
||||
$(e).val('成功'+r + '秒后重发'),
|
||||
0 == r && ($(e).removeClass('g-btntn').addClass('g-btn'), $(e).val('获取短信验证码'), clearInterval(a))
|
||||
},1e3)
|
||||
}
|
||||
<?php }else{ ?>
|
||||
|
||||
<div class="name-input">
|
||||
<div class="name-inputBox">
|
||||
<img src="__IMG__/shoujibangding.png" alt="">
|
||||
<div>手机号</div>
|
||||
</div>
|
||||
<input type="text" placeholder="请输入手机号" style="padding: 0" name="phone" id="phone" value="{$user['phone']}">
|
||||
</div>
|
||||
|
||||
|
||||
<?php }?>
|
||||
|
||||
|
||||
<div class="remove-input">
|
||||
<div class="remove-inputBox">
|
||||
<img src="__IMG__/mingzibianji.png" alt="">
|
||||
<div>验证码</div>
|
||||
<input type="text" placeholder="请输入验证码" id="scode" name="scode" value="">
|
||||
</div>
|
||||
<div class="code g-btn" id="sendSafeCode">获取验证码</div>
|
||||
</div>
|
||||
<div class="save jssubmit">保存修改</div>
|
||||
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="popmsg pop-dialog"></div>
|
||||
<script src="__JS__/pop.lwx.min.js"></script>
|
||||
<script>
|
||||
$(function() {
|
||||
$('#sendSafeCode').on('click',function() {
|
||||
var jphone = $('#phone'),phone = $.trim(jphone.val()), that = $(this);
|
||||
var pmsg = $('.popmsg').pop();
|
||||
if (phone == '') {
|
||||
pmsg.msg("手机号不能为空");
|
||||
return false;
|
||||
}
|
||||
if (phone.length !== 11 || !(/^[1][35789][0-9]{9}$/.test(phone))) {
|
||||
pmsg.msg("格式不正确");
|
||||
return false;
|
||||
}
|
||||
$.ajax({
|
||||
type:'post',
|
||||
dataType:'json',
|
||||
data:'phone='+phone,
|
||||
url:'{:U("sendvcode")}',
|
||||
success:function(data) {
|
||||
switch (parseInt(data.status)) {
|
||||
case 1: {
|
||||
r(1);
|
||||
};
|
||||
});
|
||||
$('.jssubmit').click(function() {
|
||||
var pmsg = $('.popmsg').pop();
|
||||
var phone = $.trim($('#phone').val());
|
||||
var scode = $.trim($('#scode').val());
|
||||
if (phone == '') {
|
||||
pmsg.msg("手机号不能为空");
|
||||
return false;
|
||||
}
|
||||
if (phone.length !== 11 || !(/^[1][358][0-9]{9}$/.test(phone))) {
|
||||
pmsg.msg("格式不正确");
|
||||
return false;
|
||||
}
|
||||
if(scode == ''){
|
||||
pmsg.msg("验证码不能为空");
|
||||
return false;
|
||||
}
|
||||
$.ajax({
|
||||
cache:true,
|
||||
type:'post',
|
||||
url:"{:U('User/userphone')}",
|
||||
data:$('#form').serialize(),
|
||||
dataType:'json',
|
||||
success:function(result){
|
||||
pmsg.msg(result.msg);
|
||||
if(result.status == 1){
|
||||
setTimeout(function () {
|
||||
window.location.href = result.url;
|
||||
}, 2000);
|
||||
case 0:{
|
||||
pmsg.msg(data.msg);
|
||||
}
|
||||
},
|
||||
error:function(){
|
||||
pmsg.msg("错误")
|
||||
break;
|
||||
}
|
||||
})
|
||||
},
|
||||
error:function() {
|
||||
alert('服务器开小差了,请稍后再试。');
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
var r = function(i, t) {
|
||||
if (i>0) {
|
||||
var r = 59;
|
||||
e='#sendSafeCode';
|
||||
$(e).removeClass('g-btn').addClass('g-btntn');
|
||||
var a = setInterval(function() {
|
||||
r--;
|
||||
$(e).text('成功'+r + '秒后重发'),
|
||||
0 == r && ($(e).removeClass('g-btntn').addClass('g-btn'), $(e).text('获取短信验证码'), clearInterval(a))
|
||||
},1e3)
|
||||
}
|
||||
};
|
||||
});
|
||||
$('.jssubmit').click(function() {
|
||||
var pmsg = $('.popmsg').pop();
|
||||
var phone = $.trim($('#phone').val());
|
||||
var scode = $.trim($('#scode').val());
|
||||
if (phone == '') {
|
||||
pmsg.msg("手机号不能为空");
|
||||
return false;
|
||||
}
|
||||
if (phone.length !== 11 || !(/^[1][358][0-9]{9}$/.test(phone))) {
|
||||
pmsg.msg("格式不正确");
|
||||
return false;
|
||||
}
|
||||
if(scode == ''){
|
||||
pmsg.msg("验证码不能为空");
|
||||
return false;
|
||||
}
|
||||
$.ajax({
|
||||
cache:true,
|
||||
type:'post',
|
||||
url:"{:U('User/userphone')}",
|
||||
data:$('#form').serialize(),
|
||||
dataType:'json',
|
||||
success:function(result){
|
||||
pmsg.msg(result.msg);
|
||||
if(result.status == 1){
|
||||
setTimeout(function () {
|
||||
window.location.href = result.url;
|
||||
}, 2000);
|
||||
}
|
||||
},
|
||||
error:function(){
|
||||
pmsg.msg("错误")
|
||||
}
|
||||
})
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
|
||||
|
||||
});
|
||||
</script>
|
||||
</block>
|
@ -1,70 +1,94 @@
|
||||
<extend name="Public/bases" />
|
||||
<block name="body" >
|
||||
<link href="__CSS__/user.css" rel="stylesheet" >
|
||||
<body class="">
|
||||
<header class="header">
|
||||
<div class="">
|
||||
<a href="{:U('User/userset')}" class="hbtn back"><i class="iconfont icon-drop-left"></i></a>
|
||||
<h1 class="caption">修改性别</h1>
|
||||
<a href="javascript:;" class="hbtn addbtn jssubmit">保存</a>
|
||||
</div>
|
||||
</header>
|
||||
<div class="occupy"></div>
|
||||
<section class="trunker">
|
||||
<section class="container">
|
||||
<form id='form' action="" method="post" class="">
|
||||
<div class="t-table user-auth-list">
|
||||
<ul class="table clearfix">
|
||||
<li class="table-row">
|
||||
<span class="table-cell">性别</span>
|
||||
<span class="table-cell">
|
||||
<label class="input-radio">
|
||||
<input type="radio" name="sex" class="radio sex <if condition='$sex == 0'>on</if>" value="0" checked><i class="iconfont icon-male"></i><span>男</span>
|
||||
</label>
|
||||
<label class="input-radio">
|
||||
<input type="radio" name="sex" class="radio sex <if condition='$sex == 1'>on</if>" value="1"><i class="iconfont icon-female"></i><span>女</span>
|
||||
</label>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</form>
|
||||
</section>
|
||||
</section>
|
||||
<div class="popmsg pop-dialog"></div>
|
||||
<script src="__JS__/pop.lwx.min.js"></script>
|
||||
<script>
|
||||
$(function() {
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title>修改性别</title>
|
||||
<script src="__JS__/jquery-1.11.3.min.js"></script>
|
||||
<script type="text/javascript" src="__JS__/getRem.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="__CSS__/reset.css">
|
||||
<link rel="stylesheet" type="text/css" href="__CSS__/foot_tabbar.css">
|
||||
<link rel="stylesheet" type="text/css" href="__CSS__/step1.css">
|
||||
<link href="__CSS__/common.css" rel="stylesheet" >
|
||||
<link rel="stylesheet" type="text/css" href="__CSS__/gender.css">
|
||||
<style>
|
||||
body {
|
||||
background: white;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<div class="name">
|
||||
<!-- 子页公共头部 -->
|
||||
<div class="subpage-heard">修改性别
|
||||
<a href="javascript:window.history.go(-1);" class="arrows"></a>
|
||||
</div>
|
||||
|
||||
<form action="" id="form">
|
||||
<div class="gender-info">
|
||||
<div class="gender-input">
|
||||
<div class="gender-inputBox">
|
||||
<img src="__IMG__/xingbie2.png" alt="">
|
||||
<div>性别</div>
|
||||
</div>
|
||||
<div class="gender-sel">
|
||||
<div class="radio">
|
||||
<span>男</span>
|
||||
<input id="radio-1" name="sex" type="radio" value="0" class="<if condition='$sex == 0'>on</if>" checked>
|
||||
<label for="radio-1" class="radio-label"></label>
|
||||
</div>
|
||||
|
||||
<div class="radio">
|
||||
<span>女</span>
|
||||
<input id="radio-2" name="sex" type="radio" value="1" class="<if condition='$sex == 1'>on</if>">
|
||||
<label for="radio-2" class="radio-label"></label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<div class="save jssubmit">保存修改</div>
|
||||
</div>
|
||||
|
||||
<div class="popmsg pop-dialog"></div>
|
||||
<script src="__JS__/pop.lwx.min.js"></script>
|
||||
<script>
|
||||
$(function() {
|
||||
$('input[name=sex]').click(function() {
|
||||
var that = $(this);
|
||||
$('input[name=sex]').removeClass('on');
|
||||
if (that.prop('checked')) {
|
||||
that.addClass('on');
|
||||
}
|
||||
var that = $(this);
|
||||
$('input[name=sex]').removeClass('on');
|
||||
if (that.prop('checked')) {
|
||||
that.addClass('on');
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
$('.jssubmit').click(function() {
|
||||
var pmsg = $('.popmsg').pop();
|
||||
$.ajax({
|
||||
cache:true,
|
||||
type:'post',
|
||||
url:"{:U('User/usersex')}",
|
||||
data:$('#form').serialize(),
|
||||
dataType:'json',
|
||||
success:function(result){
|
||||
pmsg.msg(result.info);
|
||||
if(result.url !=''){
|
||||
setTimeout(function () {
|
||||
window.location.href = result.url;
|
||||
}, 2000);
|
||||
cache:true,
|
||||
type:'post',
|
||||
url:"{:U('User/usersex')}",
|
||||
data:$('#form').serialize(),
|
||||
dataType:'json',
|
||||
success:function(result){
|
||||
pmsg.msg(result.info);
|
||||
if(result.url !=''){
|
||||
setTimeout(function () {
|
||||
window.location.href = result.url;
|
||||
}, 2000);
|
||||
}
|
||||
},
|
||||
error:function(){
|
||||
alert("错误")
|
||||
}
|
||||
},
|
||||
error:function(){
|
||||
alert("错误")
|
||||
}
|
||||
})
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</block>
|
||||
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -0,0 +1,90 @@
|
||||
.gender-info{
|
||||
width: 100%;
|
||||
}
|
||||
.gender-input {
|
||||
padding: 0.15rem 0.3rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
border-bottom: 1px solid #F5F5F5;
|
||||
height: 0.78rem;
|
||||
}
|
||||
.gender-inputBox {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size:0.28rem;
|
||||
font-family:PingFang SC;
|
||||
font-weight:500;
|
||||
color:rgba(41,41,41,1)
|
||||
}
|
||||
.gender-inputBox>img{
|
||||
width: 0.3rem;
|
||||
height: 0.3rem;
|
||||
margin-right: 0.23rem;
|
||||
}
|
||||
.gender-sel{
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.radio {
|
||||
color: #292929;
|
||||
font-size: 0.28rem;
|
||||
font-weight: bold;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-left: 0.82rem;
|
||||
}
|
||||
.radio>span{
|
||||
margin-right: 0.2rem;
|
||||
}
|
||||
.radio input[type="radio"] {
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
}
|
||||
.radio input[type="radio"] + .radio-label:before {
|
||||
margin-top: 0.12rem;
|
||||
content: '';
|
||||
background: #f4f4f4;
|
||||
border-radius: 100%;
|
||||
border: 1px solid #b4b4b4;
|
||||
display: inline-block;
|
||||
width: 0.28rem;
|
||||
height: 0.28rem;
|
||||
position: relative;
|
||||
top: -0.2em;
|
||||
/* margin-right: 1rem; */
|
||||
vertical-align: top;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
-webkit-transition: all 250ms ease;
|
||||
transition: all 250ms ease;
|
||||
}
|
||||
.radio input[type="radio"]:checked + .radio-label:before {
|
||||
background-color: #3197EE;
|
||||
box-shadow: inset 0 0 0 4px #f4f4f4;
|
||||
}
|
||||
.radio input[type="radio"]:focus + .radio-label:before {
|
||||
outline: none;
|
||||
border-color: #3197EE;
|
||||
}
|
||||
.radio input[type="radio"]:disabled + .radio-label:before {
|
||||
box-shadow: inset 0 0 0 4px #f4f4f4;
|
||||
border-color: #b4b4b4;
|
||||
background: #b4b4b4;
|
||||
}
|
||||
.radio input[type="radio"] + .radio-label:empty:before {
|
||||
margin-right: 0;
|
||||
}
|
||||
.save{
|
||||
width:5rem;
|
||||
height:0.8rem;
|
||||
background:rgba(33,177,235,1);
|
||||
border-radius:0.4rem;
|
||||
font-size:0.32rem;
|
||||
font-family:PingFang SC;
|
||||
font-weight:500;
|
||||
color:rgba(255,255,255,1);
|
||||
line-height: 0.8rem;
|
||||
text-align: center;
|
||||
margin: 0.3rem auto 0 auto;
|
||||
}
|
@ -0,0 +1,48 @@
|
||||
.name-info{
|
||||
width: 100%;
|
||||
}
|
||||
.name-input {
|
||||
padding: 0.15rem 0.3rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
border-bottom: 1px solid #F5F5F5;
|
||||
height: 0.78rem;
|
||||
}
|
||||
.name-inputBox {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size:0.28rem;
|
||||
font-family:PingFang SC;
|
||||
font-weight:500;
|
||||
color:rgba(41,41,41,1)
|
||||
}
|
||||
.name-inputBox>img{
|
||||
width: 0.3rem;
|
||||
height: 0.3rem;
|
||||
margin-right: 0.23rem;
|
||||
}
|
||||
.name-input>input{
|
||||
font-size:0.28rem;
|
||||
font-family:PingFang SC;
|
||||
font-weight:400;
|
||||
color:rgba(169,169,169,1);
|
||||
outline: 0;
|
||||
border: 0;
|
||||
height: 0.5rem;
|
||||
width: 4rem;
|
||||
text-align: right;
|
||||
}
|
||||
.save{
|
||||
width:5rem;
|
||||
height:0.8rem;
|
||||
background:rgba(33,177,235,1);
|
||||
border-radius:0.4rem;
|
||||
font-size:0.32rem;
|
||||
font-family:PingFang SC;
|
||||
font-weight:500;
|
||||
color:rgba(255,255,255,1);
|
||||
line-height: 0.8rem;
|
||||
text-align: center;
|
||||
margin: 0.3rem auto 0 auto;
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
.remove-info{
|
||||
width: 100%;
|
||||
}
|
||||
.remove-input {
|
||||
padding: 0.15rem 0.3rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
border-bottom: 1px solid #F5F5F5;
|
||||
height: 0.78rem;
|
||||
font-size: 0.28rem;
|
||||
}
|
||||
.remove-inputBox {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
font-size:0.28rem;
|
||||
font-family:PingFang SC;
|
||||
font-weight:500;
|
||||
color:rgba(41,41,41,1)
|
||||
}
|
||||
.remove-inputBox>img{
|
||||
width: 0.3rem;
|
||||
height: 0.3rem;
|
||||
margin-right: 0.23rem;
|
||||
}
|
||||
.remove-inputBox>input{
|
||||
width: 1.8rem;
|
||||
height: 0.5rem;
|
||||
border: 0;
|
||||
outline: 0;
|
||||
padding: 0;
|
||||
font-size: 0.28rem;
|
||||
margin-left: 0.33rem;
|
||||
}
|
||||
.code{
|
||||
width:1.84rem;
|
||||
height:0.6rem;
|
||||
background:rgba(33,177,235,1);
|
||||
border-radius:0.3rem;
|
||||
font-size:0.15rem;
|
||||
font-family:PingFang SC;
|
||||
font-weight:400;
|
||||
color:rgba(255,255,255,1);
|
||||
text-align: center;
|
||||
line-height: 0.6rem;
|
||||
}
|
||||
|
||||
.save{
|
||||
width:5rem;
|
||||
height:0.8rem;
|
||||
background:rgba(33,177,235,1);
|
||||
border-radius:0.4rem;
|
||||
font-size:0.32rem;
|
||||
font-family:PingFang SC;
|
||||
font-weight:500;
|
||||
color:rgba(255,255,255,1);
|
||||
line-height: 0.8rem;
|
||||
text-align: center;
|
||||
margin: 0.3rem auto 0 auto;
|
||||
margin-bottom: 10px;
|
||||
}
|
After Width: | Height: | Size: 1000 B |
After Width: | Height: | Size: 998 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 620 B |
After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 602 B |