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