getVerificationCode: function() {
var that = this;
var currentTime = that.data.currentTime;
that.setData({
codename: currentTime + '秒',
disabled:true
})
var interval = setInterval(function() {
that.setData({
codename: (currentTime - 1) + '秒'
})
currentTime--;
if (currentTime <= 0) {
clearInterval(interval)
that.setData({
codename: '重新获取',
currentTime: 60,
disabled: false
})
}
}, 1000)
},
相关文章
- 10-11微信小程序开发之搞懂flex布局1——Flexbox
- 10-11推荐几个【2021年原创】微信小程序毕业设计的课题 小程序毕业设计题目 小程序毕设选题参考 基于微信小程序毕业设计
- 10-11微信小程序获取二维码参数
- 10-11微信小程序 下载视频 图片
- 10-11微信小程序的那些坑
- 10-11微信小程序中的iPhone X适配问题
- 10-111-(微信小程序篇)安装Nginx,配置反向代理
- 10-11微信小程序redirect 到tab不刷新
- 10-11微信小程序计算器后后续
- 10-11微信小程序开发——消除Now you can provide attr `wx:key` for a `wx:for` to improve performance.