小程序如何获取手机验证码倒计时

本文小编为大家详细介绍“小程序如何获取手机验证码倒计时”,内容详细,步骤清晰,细节处理妥当,希望这篇“小程序如何获取手机验证码倒计时”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。test:.w

本文小编为大家详细介绍“小程序如何获取手机验证码倒计时”,内容详细,步骤清晰,细节处理妥当,希望这篇“小程序如何获取手机验证码倒计时”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。

test:

.wxss

  1. .bind_input{ width: 450rpx; height: 80rpx; padding: 0 20rpx; margin: 0 auto 20rpx auto; border-radius: 40rpx; border: #ddd solid 1px;
  2.     display: flex; justify-content: space-between; align-items: center;
  3. }
  4. .bind_input input{ width: 230rpx; height: 50rpx; padding-left: 30rpx;}
  5. .bind_yzm_btn{ width: 160rpx; height: 50rpx; line-height: 50rpx; text-align: center; color: #fff; font-size: 24rpx; border-radius: 25rpx; background-color: #0FC393;}
  6. .bind_yzm_btn.grey{ font-size: 28rpx; background-color: #ccc;}
  7.  
  8. .bind_btn{ width: 450rpx; height: 80rpx; line-height: 80rpx; margin: 40rpx auto 0 auto; text-align: center; color: #fff; font-size: 36rpx; font-weight: 300; border-radius: 40rpx; background-color: #0FC393;
  9.     box-shadow:0px 10px 20px rgba(0,182,142,0.4);
  10. }

.wxml

  1. <view class="bind_input">
  2.     <input type="tel" value="{{mobile}}" bindinput="setMobile" placeholder="输入手机号" maxlength="11" placeholder/>
  3. </view>
  4.  
  5. <view class="bind_input">
  6.     <input type="tel" value="{[code]}" bindinput="setCode" placeholder="短信验证码" maxlength="4" placeholder/>
  7.     <text wx:if="{{ifTimeIn}}" class="bind_yzm_btn grey">{{timeCur}}</text>
  8.     <text wx:else bindtap="getMobileVerify" class="bind_yzm_btn">获取验证码</text>
  9. </view>
  10.  
  11. <view bindtap="bindDo" class="bind_btn">确定</view>

.js

  1. Page({
  2.  
  3.   /**
  4.    * 页面的初始数据
  5.    */
  6.   data: {
  7.         mobile:'',
  8.         code:'',
  9.         
  10.         // 倒计时参数
  11.         timeStart:60, //倒计时初始值
  12.         timeCur:null, //当前倒计时显示值
  13.         timer:null,
  14.         
  15.         ifTimeIn:false, //是否倒计时中
  16.         
  17.         ifSendMobileVerify:false, //是否发送成功验证码
  18.   },
  19.     
  20.     // 设置用户输入的手机号
  21.     setMobile(e){
  22.         // console.log(e.detail.value);
  23.         this.setData({
  24.             mobile : e.detail.value.replace(/\\s+/g,"")
  25.         });
  26.     },
  27.     
  28.     // 设置用户输入的验证码
  29.     setCode(e){
  30.         // console.log(e.detail.value);
  31.         this.setData({
  32.             code : e.detail.value.replace(/\\s+/g,"")
  33.         });
  34.     },
  35.     
  36.     
  37.     
  38.     // 倒计时
  39.     setTime(){
  40.         let timeCur = this.data.timeCur - 1;
  41.         // console.log(timeCur);
  42.         if(timeCur < 0){
  43.             clearInterval(this.data.timer);
  44.             this.setData({
  45.                 ifTimeIn:false
  46.             });
  47.             return false;
  48.         }
  49.         this.setData({
  50.             timeCur : timeCur
  51.         });
  52.     },
  53.     
  54.     // 获取验证码
  55.     getMobileVerify(){
  56.         if(!this.data.mobile){
  57.             wx.showModal({
  58.                 title: '友情提示',
  59.                 content: '请输入手机号',
  60.                 showCancel: false,
  61.             });
  62.             return false
  63.         }
  64.         
  65.         if(!/^1\\d{10}$/.test(this.data.mobile)){
  66.             wx.showModal({
  67.                 title: '友情提示',
  68.                 content: '请输入正确的手机号',
  69.                 showCancel: false,
  70.             });
  71.             return false;
  72.         }
  73.         
  74.         wx.showLoading({
  75.           title: "发送中",
  76.           mask: true
  77.         });
  78.         
  79.         let dataJson = {
  80.             mobile : this.data.mobile,
  81.         };
  82.         
  83.         /* ----请求后台发送验证码成功---- */
  84.         // 执行倒计时
  85.         this.setData({
  86.             timeCur : this.data.timeStart,
  87.             timer : setInterval(this.setTime,1000),
  88.             ifTimeIn : true,
  89.             ifSendMobileVerify : true
  90.         });
  91.         /* ----请求后台发送验证码成功---- */
  92.         wx.hideLoading();
  93.     },
  94.     
  95.     // 确定提交
  96.     bindDo(){
  97.         if(!this.data.ifSendMobileVerify){
  98.             wx.showModal({
  99.                 title: '友情提示',
  100.                 content: '请确定您的手机收到验证码再操作',
  101.                 showCancel: false,
  102.             });
  103.             return false;
  104.         }
  105.         if(!this.data.code){
  106.             wx.showModal({
  107.                 title: '友情提示',
  108.                 content: '请输入验证码',
  109.                 showCancel: false,
  110.             });
  111.             return false;
  112.         }
  113.         
  114.         /* ----请求后台提交成功---- */
  115.         wx.showToast({
  116.             title: '成功',
  117.             icon: 'success',
  118.             mask: true,
  119.             duration: 1500
  120.         });
  121.         /* ----请求后台提交成功---- */
  122.     },
  123.  
  124.   /**
  125.    * 生命周期函数--监听页面显示
  126.    */
  127.   onShow: function () {
  128.  
  129.   },
  130. })

读到这里,这篇“小程序如何获取手机验证码倒计时”文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注恰卡网行业资讯频道。

本站部分文章来自网络或用户投稿,如无特殊说明或标注,均为本站原创发布。涉及资源下载的,本站旨在共享仅供大家学习与参考,如您想商用请获取官网版权,如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
开发者

微信小程序全局文件如何使用

2022-8-3 21:24:19

开发者

Vue3+qrcodejs怎么生成二维码并添加文字描述

2022-8-3 21:24:27

搜索