index.js 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. import { registerVerify, bindingPhone} from '../../api/api.js';
  2. const app = getApp();
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. parameter: {
  9. 'navbar': '1',
  10. 'return': '1',
  11. 'title': '验证码登录',
  12. 'color': true,
  13. 'class': '6'
  14. },
  15. disabled: false,
  16. active: false,
  17. timetext: '获取验证码',
  18. userInfo: {},
  19. phone: '',
  20. },
  21. inputgetName(e) {
  22. let that = this;
  23. let name = e.currentTarget.dataset.name;
  24. let nameMap = {}
  25. if (name.indexOf('.') != -1) {
  26. let nameList = name.split('.')
  27. if (that.data[nameList[0]]) {
  28. nameMap[nameList[0]] = that.data[nameList[0]]
  29. } else {
  30. nameMap[nameList[0]] = {}
  31. }
  32. nameMap[nameList[0]][nameList[1]] = e.detail.value
  33. } else {
  34. nameMap[name] = e.detail.value
  35. }
  36. that.setData(nameMap);
  37. },
  38. onLoadFun:function(){
  39. },
  40. editPwd:function(){
  41. let that = this;
  42. if (!this.data.phone) return app.Tips({ title: '请填写手机号码!' });
  43. if (!(/^1[3456789]\d{9}$/.test(this.data.phone))) return app.Tips({ title: '请输入正确的手机号码!' });
  44. if (!this.data.captcha) return app.Tips({title:'请填写验证码'});
  45. bindingPhone({
  46. phone:this.data.phone,
  47. captcha: this.data.captcha
  48. }).then(res=>{
  49. if (res.data !== undefined && res.data.is_bind){
  50. wx.showModal({
  51. title:'是否绑定账号',
  52. content:res.msg,
  53. confirmText:'绑定',
  54. success(res){
  55. if (res.confirm){
  56. bindingPhone({
  57. phone: that.data.phone,
  58. captcha: that.data.captcha,
  59. step:1
  60. }).then(res=>{
  61. return app.Tips({ title: res.msg, icon: 'success' }, { tab: 5, url: '/pages/user_info/index' });
  62. }).catch(err => { return app.Tips({ title: err }); })
  63. } else if (res.cancel){
  64. return app.Tips({ title: '您已取消绑定!'}, { tab: 5, url: '/pages/user_info/index' });
  65. }
  66. }
  67. });
  68. }else
  69. return app.Tips({title:'绑定成功!',icon:'success'},{tab:5,url:'/pages/user_info/index'});
  70. }).catch(err=>{
  71. return app.Tips({title:err});
  72. })
  73. },
  74. /**
  75. * 发送验证码
  76. *
  77. */
  78. code: function () {
  79. let that = this;
  80. if (!this.data.phone) return app.Tips({ title: '请填写手机号码!' });
  81. if (!(/^1[3456789]\d{9}$/.test(that.data.phone))) return app.Tips({ title: '请输入正确的手机号码!' });
  82. registerVerify(this.data.phone).then(res => {
  83. that.setData({ disabled: true, active: true });
  84. let n = 60;
  85. let run = setInterval(function () {
  86. n--;
  87. if (n < 0) {
  88. clearInterval(run);
  89. that.setData({ disabled: false, active: false, timetext: '重新获取' });
  90. } else {
  91. that.setData({ timetext: "剩余 " + n + "s" })
  92. }
  93. }, 1000);
  94. return app.Tips({title:'发送成功',icon:'success'});
  95. }).catch(err => {
  96. return app.Tips({ title: err });
  97. });
  98. },
  99. /**
  100. * 生命周期函数--监听页面加载
  101. */
  102. onLoad: function (options) {
  103. },
  104. /**
  105. * 生命周期函数--监听页面初次渲染完成
  106. */
  107. onReady: function () {
  108. },
  109. /**
  110. * 生命周期函数--监听页面显示
  111. */
  112. onShow: function () {
  113. },
  114. /**
  115. * 生命周期函数--监听页面隐藏
  116. */
  117. onHide: function () {
  118. },
  119. /**
  120. * 生命周期函数--监听页面卸载
  121. */
  122. onUnload: function () {
  123. },
  124. /**
  125. * 页面相关事件处理函数--监听用户下拉动作
  126. */
  127. onPullDownRefresh: function () {
  128. },
  129. /**
  130. * 页面上拉触底事件的处理函数
  131. */
  132. onReachBottom: function () {
  133. }
  134. })