暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

bind_mobile.htm 6.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>绑定手机-{eyou:global name='web_name' /}</title>
  6. <meta name="renderer" content="webkit">
  7. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  8. <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
  9. {eyou:static file="users/skin/css/basic.css" /}
  10. {eyou:static file="users/skin/css/eyoucms.css" /}
  11. <!-- 新样式 2020-11-25 -->
  12. {eyou:static file="users/skin/css/element/index.css" /}
  13. {eyou:static file="users/skin/css/e-user.css" /}
  14. {eyou:include file="users/skin/css/diy_css.htm" /}
  15. {eyou:static file="/public/static/common/js/jquery.min.js"/}
  16. {eyou:static file="/public/plugins/layer-v3.1.0/layer.js"/}
  17. {eyou:static file="/public/static/common/js/tag_global.js"/}
  18. </head>
  19. <body class="bind_mobile">
  20. <div class="el-row">
  21. <form name='theForm' id="theForm" method="post">
  22. <div class="ey-popup">
  23. <div class="el-form-item">
  24. <div class="el-input">
  25. <input type="text" name="mobile" id="mobile" {eyou:eq name='$users.is_mobile' value='0'} value="{$users.mobile}" {/eyou:eq} required class="el-input__inner" autocomplete="off" placeholder="新的手机号码" maxlength="11">
  26. </div>
  27. </div>
  28. <div class="el-form-item">
  29. <div class="el-input el-input-group">
  30. <input type="text" name="vertify" id="vertify" autocomplete="off" class="el-input__inner" placeholder="图片验证码" />
  31. <img src="{eyou:url link='api/Ajax/vertify' vars='type=bind' /}" class="chicuele" id="imgVerifys" onClick="fleshVerify();">
  32. </div>
  33. </div>
  34. <div class="el-form-item">
  35. <div class="el-input el-input-group ">
  36. <input type="text" class="el-input__inner" id="mobile_code" name="mobile_code" autocomplete="off" placeholder="手机验证码">
  37. <div class="el-input-group__append">
  38. <input type="button" id="mobile_button" onclick="get_mobile_code();" class="el-button el-button--default" value="获取验证码" />
  39. </div>
  40. </div>
  41. </div>
  42. <div class="el-form-item mb0">
  43. <button type="button" class="el-button el-button--primary f14" style="width: 100%;" onclick="SubmitData();">确定</button>
  44. </div>
  45. </div>
  46. </form>
  47. </div>
  48. <script type="text/javascript">
  49. function fleshVerify(){
  50. var src = "{eyou:url link='api/Ajax/vertify' vars='type=bind' /}";
  51. if (src.indexOf('?') > -1) {
  52. src += '&';
  53. } else {
  54. src += '?';
  55. }
  56. src += 'r='+ Math.floor(Math.random()*100);
  57. $('#imgVerifys').attr('src', src);
  58. }
  59. function get_mobile_code() {
  60. var mobile = $("#mobile").val();
  61. // 手机号是否为空
  62. if (!mobile) {
  63. $("#mobile").focus();
  64. layer.msg('请输入新的手机号码!', {time: 1500});
  65. return false;
  66. }
  67. // 手机格式不正确
  68. var reg = /^1[0-9]{10}$/i;
  69. if (!reg.test(mobile)) {
  70. $("#mobile").focus();
  71. layer.msg('请输入正确的新的手机号码!', {time: 1500});
  72. return false;
  73. }
  74. // 图形验证码
  75. var vertify = $("#vertify").val();
  76. if (!vertify) {
  77. $("#vertify").focus();
  78. layer.msg('请输入图形验证码!', {time: 1500});
  79. return false;
  80. }
  81. // 设置为不可点击
  82. $("#mobile_button").val('获取中…').attr('disabled', 'disabled');
  83. layer_loading('正在处理');
  84. $.ajax({
  85. url: '{$RootDir}/index.php?m=api&c=Ajax&a=SendMobileCode&_ajax=1',
  86. data: {mobile: mobile, is_mobile: true, source: 1, vertify:vertify, type:'bind'},
  87. type:'post',
  88. dataType:'json',
  89. success:function(res){
  90. layer.closeAll();
  91. if (res.code == 1) {
  92. countdown();
  93. layer.msg(res.msg, {time: 1500});
  94. } else {
  95. $("#mobile_button").val('获取验证码').removeAttr("disabled");
  96. showErrorAlert(res.msg);
  97. }
  98. },
  99. error : function(e) {
  100. layer.closeAll();
  101. $("#mobile_button").val('获取验证码').removeAttr("disabled");
  102. showErrorAlert(e.responseText);
  103. }
  104. });
  105. }
  106. function countdown() {
  107. // 倒计时
  108. var setTime;
  109. var time = 120;
  110. setTime = setInterval(function() {
  111. if(0 >= time){
  112. clearInterval(setTime);
  113. return;
  114. }
  115. time--;
  116. $("#mobile_button").val(time+'秒').attr('disabled', 'disabled');
  117. if(time == 0) $("#mobile_button").val('获取验证码').removeAttr("disabled");
  118. }, 1000);
  119. };
  120. function SubmitData() {
  121. var mobile = $("#mobile").val();
  122. var reg = /^1[0-9]{10}$/i;
  123. // 邮箱格式不正确
  124. if(!reg.test(mobile)) {
  125. layer.msg('请正确输入手机号码!', {time: 2000});
  126. return false;
  127. }
  128. var mobile_code = $("#mobile_code").val();
  129. if(!mobile_code) {
  130. layer.msg('手机验证码不能为空!', {time: 2000});
  131. return false;
  132. }
  133. var _parent = parent;
  134. var parentObj = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引
  135. layer_loading('正在处理');
  136. $.ajax({
  137. url: '{$RootDir}/index.php?m=user&c=Users&a=bind_mobile&_ajax=1',
  138. data: $('#theForm').serialize(),
  139. type:'post',
  140. dataType:'json',
  141. success:function(res){
  142. layer.closeAll();
  143. if (res.code == 1) {
  144. parent.layer.close(parentObj);
  145. parent.layer.msg(res.msg, {time: 1500}, function() {
  146. _parent.window.location.reload();
  147. });
  148. } else {
  149. showErrorAlert(res.msg);
  150. }
  151. },
  152. error : function(e) {
  153. layer.closeAll();
  154. showErrorAlert(e.responseText);
  155. }
  156. });
  157. };
  158. </script>
  159. </body>
  160. </html>