效果图

wxml

<input class='input-pwd' placeholder="新密码" placeholder-style='color: #000' password focus bindconfirm='getPwd'/>
<input class='input-tel' type='number' placeholder="手机号" placeholder-style='color: #000' maxlength='11 confirm-type='done' />
<input class='input-verify' type='number' placeholder-style='color: #000' placeholder='手机验证码'></input>
<button class='verify-btn' disabled='{{disabled}}' bindtap="getVerificationCode">{{time}}</button> <button class='confirm-btn' bindtap='confirm_btn'>确认修改</button>

wxss

/* pages/forgetpwd/forgetpwd.wxss */
input{
padding-left: 20rpx;
border-bottom: 1rpx solid #ccc;
height: 80rpx;
line-height: 80rpx;
width: 95%;
margin: 0 auto;
font-size: 28rpx;
}
.input-verify{
width: 67%;
margin-left: 10rpx;
float: left;
}
.verify-btn{
width: 26%;
height: 65rpx;
float: right;
line-height: 65rpx;
background: #fff;
color: #5FD79D;
margin: 20rpx 10rpx;
font-size: 28rpx;
}
.confirm-btn{
width: 80%;
height: 90rpx;
margin: 150rpx auto;
background: #5FD79D;
color: #fff;
}

js

// pages/forgetpwd/forgetpwd.js
var interval = null //倒计时函数
Page({ /**
* 页面的初始数据
*/
data: {
time: '获取验证码', //倒计时
currentTime: 60
}, /**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) { }, getPwd:function(e){
console.log(e.detail.value)
}, /**
* 确认修改
*/
confirm_btn:function(){
wx.redirectTo({
url: '/pages/login/login',
})
}, 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
})
},
})

最新文章

  1. python面向对象中的__init__方法怎么理解?
  2. Atitit 基于图片图像 与文档混合文件夹的分类
  3. 布朗语料库中条件概率分布函数ConditionalFreqDist使用
  4. struts2各个jar包的作用
  5. 20135202闫佳歆--week 8 进程的切换和系统的一般执行过程--学习笔记
  6. 【Python】python list 迭代删除
  7. 三年PS经验
  8. 自动化测试(二):QTP验证点
  9. uiatuomator提示shortMsg=java.lang.RuntimeException
  10. PAT (Advanced Level) 1049. Counting Ones (30)
  11. C#:查询某年(1900-2100)某月的日历
  12. OpenMP并行化实例----Mandelbrot集合并行化计算
  13. 随机数据生成与对拍【c++版,良心讲解】
  14. JQuery案例一:实现表格隔行换色
  15. [IOS][已越狱]配合网易云音乐,使用Bridge快速免iTunes导入音乐到“音乐”
  16. mysql误删root
  17. android ninja【转】
  18. +: indexed part-select
  19. git批量删除文件和批量提交
  20. Using C++11 function &amp; bind

热门文章

  1. Apollo配置管理系统使用
  2. 附加题2 :git 简单练习
  3. Unity3d让某个物体一直正对着相机
  4. python pickle模块的使用/将python数据对象序列化保存到文件中
  5. WebRTC学习之ICE深入理解
  6. Tools - OpenSSL
  7. LeetCode: 150_Evaluate Reverse Polish Notation | 分析逆波兰式 | Medium
  8. LeetCode--No.009 Palindrome Number
  9. maven个人总结
  10. 京东架构师的showtime京东个性化推荐系统实战