小程序驗(yàn)證碼倒計(jì)時(shí)獲取方式
2020-09-27|HiShop
導(dǎo)讀:小程序驗(yàn)證碼倒計(jì)時(shí)是小程序倒計(jì)時(shí)功能很常見的一種,輸入手機(jī)號(hào)等待驗(yàn)證碼的倒計(jì)時(shí),那么這種形式要怎么獲取呢?...
小程序驗(yàn)證碼倒計(jì)時(shí)是小程序倒計(jì)時(shí)功能很常見的一種,輸入手機(jī)號(hào)等待驗(yàn)證碼的倒計(jì)時(shí),那么這種形式要怎么獲取呢?
.wxml
<button class="buttonget" disabled='{{disabled}}' data-id="2" bindtap="getVerificationCode"> {{time}} </button>
.js
var interval = null //倒計(jì)時(shí)函數(shù)
Page({
data: {
date: '請(qǐng)選擇日期',
fun_id: 2,
time: '獲取驗(yàn)證碼', //倒計(jì)時(shí)
currentTime: 60
},
getCode: function (options) {
var that = this;
var currentTime = that.data.currentTime
interval = setInterval(function () {
currentTime--;
that.setData({
time: currentTime + '秒'
})
if (currentTime <= 0) {
clearInterval(interval)
that.setData({
time: '獲取',
currentTime: 60,
disabled: false
})
}
}, 1000)
},
getVerificationCode() {
this.getCode();
var that = this
that.setData({
disabled: true
})
},
})
.wxss
.buttonget
{
margin-right: 250rpx;
width:110rpx;
height:55rpx;
color: #20B6C5;
line-height: 50rpx;
font-size: 25rpx;
border:1rpx solid #20B6C5;
}
/*隱藏Button按鈕本身的邊框*/
button[class="buttonget"]::after {
border: 0;
}
HiShop小程序工具提供多類型商城/門店小程序制作,可視化編輯 1秒生成5步上線。通過拖拽、拼接模塊布局小程序商城頁(yè)面,所看即所得,只需要美工就能做出精美商城。
更多小程序開發(fā)案例,盡在:http://zytcm.com.cn/xiaocx/kaifa.html