实名认证
This commit is contained in:
@@ -274,12 +274,113 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p class="text-center">
|
<p class="text-center">
|
||||||
<button type="button" class="btn btn-primary" id="cash_out_confirm" onclick="realname()">确认</button>
|
<button type="button" class="btn btn-primary" id="real-name-botton" onclick="realname()">确认</button>
|
||||||
<button type="button" class="btn btn-danger quxiao" style="margin-left:20px;" onclick="$('.real-name').hide()">取消</button>
|
<button type="button" class="btn btn-danger quxiao" style="margin-left:20px;" onclick="$('.real-name').hide()">取消</button>
|
||||||
</p>
|
</p>
|
||||||
</form>
|
</form>
|
||||||
<h3 id="verify-info" style="display:none;text-align: center;">请打开 支付宝 扫码进行认证</h3>
|
<h3 id="verify-info" style="display:none;text-align: center;">请打开 支付宝 扫码进行认证</h3>
|
||||||
<div id="qrcode_s" style="text-align: center;padding-left: 200px;"></div>
|
<div id="qrcode_s" style="text-align: center;padding-left: 200px;"></div>
|
||||||
|
<script>
|
||||||
|
|
||||||
|
function realname(){
|
||||||
|
let id_code = $('#real-name-code').val(),
|
||||||
|
name = $('#real-name-name').val(),
|
||||||
|
phone = $('#real-name-phone').val();
|
||||||
|
|
||||||
|
if(id_code.length <= 0){
|
||||||
|
alert("抱歉!请重新输入身份证号!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if(phone.length != 11){
|
||||||
|
alert("抱歉!请重新输入手机号!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if(name.length <= 0){
|
||||||
|
alert("抱歉!请重新输入姓名!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
var reg = /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/;
|
||||||
|
if(reg.test(id_code) === false)
|
||||||
|
{
|
||||||
|
alert("身份证输入不合法");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
let data = {
|
||||||
|
cookie:document.cookie,
|
||||||
|
id_code: id_code,
|
||||||
|
name: name,
|
||||||
|
phone: phone
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
$.ajax({
|
||||||
|
type: 'POST',
|
||||||
|
url: 'http://php-api.juip.com/api/test/aliverify',
|
||||||
|
dataType: "json",
|
||||||
|
contentType: "application/json",
|
||||||
|
data: JSON.stringify(data),
|
||||||
|
beforeSend: function(xhr) {
|
||||||
|
xhr.withCredentials = true;
|
||||||
|
},
|
||||||
|
crossDomain: true,
|
||||||
|
success: function (res) {
|
||||||
|
if (res.Code == 20000) {
|
||||||
|
alert('已经认证成功');
|
||||||
|
window.location.href='/User/Index';
|
||||||
|
return ;
|
||||||
|
}
|
||||||
|
if (res.Code == 30000) {
|
||||||
|
alert('该身份已经进行认证,无法再次进行认证!');
|
||||||
|
window.location.href='/User/Index';
|
||||||
|
return ;
|
||||||
|
}
|
||||||
|
if (res.Code == 10000) {
|
||||||
|
$('#id-cert').hide();
|
||||||
|
$('#verify-info').show();
|
||||||
|
new QRCode(document.getElementById("qrcode_s"), {
|
||||||
|
text: res.url,
|
||||||
|
width : 550,
|
||||||
|
height : 550
|
||||||
|
});
|
||||||
|
t1 = window.setInterval(get_verify_res,1500);
|
||||||
|
|
||||||
|
} else {
|
||||||
|
alert('请正确填写姓名和身份证号码。');
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// let data = {
|
||||||
|
// cookie:document.cookie,
|
||||||
|
// id_code: id_code,
|
||||||
|
// name: name
|
||||||
|
// }
|
||||||
|
// $.ajax({
|
||||||
|
// type: 'POST',
|
||||||
|
// url: 'http://php-api.juip.com/api/Realname/index',
|
||||||
|
// dataType: "json",
|
||||||
|
// contentType: "application/json",
|
||||||
|
// data: JSON.stringify(data),
|
||||||
|
// beforeSend: function(xhr) {
|
||||||
|
// xhr.withCredentials = true;
|
||||||
|
// },
|
||||||
|
// crossDomain: true,
|
||||||
|
// success: function (res) {
|
||||||
|
// if (res.Code == 10000) {
|
||||||
|
// $('.real-name').hide();
|
||||||
|
// alert('实名认证成功。');
|
||||||
|
// } else {
|
||||||
|
// alert('请正确填写姓名和身份证号码。');
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// });
|
||||||
|
}
|
||||||
|
|
||||||
|
</script>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="money-change">
|
<div class="money-change">
|
||||||
@@ -590,103 +691,6 @@
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
function realname(){
|
|
||||||
let id_code = $('#real-name-code').val(),
|
|
||||||
name = $('#real-name-name').val(),
|
|
||||||
phone = $('#real-name-phone').val();
|
|
||||||
|
|
||||||
if(id_code.length <= 0){
|
|
||||||
alert("抱歉!请重新输入身份证号!");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if(phone.length != 11){
|
|
||||||
alert("抱歉!请重新输入手机号!");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if(name.length <= 0){
|
|
||||||
alert("抱歉!请重新输入姓名!");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var reg = /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/;
|
|
||||||
if(reg.test(id_code) === false)
|
|
||||||
{
|
|
||||||
alert("身份证输入不合法");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
let data = {
|
|
||||||
cookie:document.cookie,
|
|
||||||
id_code: id_code,
|
|
||||||
name: name,
|
|
||||||
phone: phone
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
$.ajax({
|
|
||||||
type: 'POST',
|
|
||||||
url: 'http://php-api.juip.com/api/test/aliverify',
|
|
||||||
dataType: "json",
|
|
||||||
contentType: "application/json",
|
|
||||||
data: JSON.stringify(data),
|
|
||||||
beforeSend: function(xhr) {
|
|
||||||
xhr.withCredentials = true;
|
|
||||||
},
|
|
||||||
crossDomain: true,
|
|
||||||
success: function (res) {
|
|
||||||
if (res.Code == 20000) {
|
|
||||||
alert('已经认证成功');
|
|
||||||
window.location.href='/User/Index';
|
|
||||||
return ;
|
|
||||||
}
|
|
||||||
if (res.Code == 30000) {
|
|
||||||
alert('该身份已经进行认证,无法再次进行认证!');
|
|
||||||
window.location.href='/User/Index';
|
|
||||||
return ;
|
|
||||||
}
|
|
||||||
if (res.Code == 10000) {
|
|
||||||
$('#id-cert').hide();
|
|
||||||
$('#verify-info').show();
|
|
||||||
new QRCode(document.getElementById("qrcode_s"), {
|
|
||||||
text: res.url,
|
|
||||||
width : 550,
|
|
||||||
height : 550
|
|
||||||
});
|
|
||||||
t1 = window.setInterval(get_verify_res,1500);
|
|
||||||
|
|
||||||
} else {
|
|
||||||
alert('请正确填写姓名和身份证号码。');
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// let data = {
|
|
||||||
// cookie:document.cookie,
|
|
||||||
// id_code: id_code,
|
|
||||||
// name: name
|
|
||||||
// }
|
|
||||||
// $.ajax({
|
|
||||||
// type: 'POST',
|
|
||||||
// url: 'http://php-api.juip.com/api/Realname/index',
|
|
||||||
// dataType: "json",
|
|
||||||
// contentType: "application/json",
|
|
||||||
// data: JSON.stringify(data),
|
|
||||||
// beforeSend: function(xhr) {
|
|
||||||
// xhr.withCredentials = true;
|
|
||||||
// },
|
|
||||||
// crossDomain: true,
|
|
||||||
// success: function (res) {
|
|
||||||
// if (res.Code == 10000) {
|
|
||||||
// $('.real-name').hide();
|
|
||||||
// alert('实名认证成功。');
|
|
||||||
// } else {
|
|
||||||
// alert('请正确填写姓名和身份证号码。');
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// });
|
|
||||||
}
|
|
||||||
|
|
||||||
function get_verify_res(){
|
function get_verify_res(){
|
||||||
let data = {
|
let data = {
|
||||||
|
|||||||
Reference in New Issue
Block a user