需求:輸入手機(jī)號 -> 點(diǎn)擊獲取驗(yàn)證碼 -> 進(jìn)入60s倒計(jì)時(shí)
短信驗(yàn)證碼登錄
data: {
seconds: 0, // 讀秒
timer: '' // 計(jì)時(shí)器
},
let that = this
// 開始倒計(jì)時(shí)
that.setData({
seconds: 60,
timer: setInterval(function(){
let seconds = that.data.seconds
that.setData({ seconds: seconds - 1 })
if (that.data.seconds == 0) {
// 讀秒結(jié)束 清空計(jì)時(shí)器
clearInterval(that.data.timer)
}
}, 1000)
})
|