verifycode.js 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. const app = getApp();
  2. const api = require('../../api/api');
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. Length: 4, //输入框个数
  9. isFocus: true, //聚焦
  10. phone: '', //手机号
  11. Value: "", //输入的内容(验证码)
  12. ispassword: false, //是否密文显示 true为密文, false为明文。
  13. navbarData: {
  14. showCapsule: 1, //是否显示左上角图标 1表示显示 0表示不显示
  15. title: '个人认证', //导航栏 中间的标题
  16. capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
  17. },
  18. },
  19. onLoad(options) {
  20. console.log(options);
  21. this.setData({
  22. phone: options.phone
  23. })
  24. },
  25. Focus(e) {
  26. let that = this;
  27. let inputValue = e.detail.value;
  28. that.setData({
  29. Value: inputValue,
  30. })
  31. if (that.data.Value.length === that.data.Length) {
  32. wx.showLoading({
  33. title: '正在验证',
  34. mask: true
  35. })
  36. wx.request({
  37. url: api.authentication,
  38. header: {
  39. 'Authorization': wx.getStorageSync('token')
  40. },
  41. data: {
  42. phone: that.data.phone,
  43. code: that.data.Value
  44. },
  45. success(res) {
  46. wx.hideLoading()
  47. console.log(res);
  48. if (res.data.code === 1) {
  49. wx.showToast({
  50. title: res.data.msg,
  51. icon: 'success',
  52. mask: true,
  53. success() {
  54. setTimeout(() => {
  55. wx.navigateTo({
  56. url: '/pages/authorizesuccessful/authorizesuccessful',
  57. })
  58. }, 1500)
  59. }
  60. })
  61. } else {
  62. wx.showToast({
  63. title: res.data.msg,
  64. mask: true,
  65. icon: 'none',
  66. duration: 2000
  67. })
  68. // that.setData({
  69. // Value: '',
  70. // isFocus: false
  71. // })
  72. setTimeout(()=> {
  73. // that.setData({
  74. // isFocus: true
  75. // })
  76. let options = {phone: wx.getStorageSync('phonenumber')}
  77. that.onLoad(options)
  78. }, 1000)
  79. }
  80. },
  81. fail(err) {
  82. wx.hideLoading()
  83. wx.showToast({
  84. title: '发起网络请求失败',
  85. icon: 'none',
  86. mask: true
  87. })
  88. },
  89. complete() {
  90. }
  91. })
  92. }
  93. },
  94. Tap() {
  95. var that = this;
  96. that.setData({
  97. isFocus: true,
  98. })
  99. },
  100. formSubmit(e) {
  101. console.log(e.detail.value.password);
  102. },
  103. // 方案2:输入完成
  104. inputComplated(e) {
  105. // console.log(e.detail.value);
  106. // return
  107. let that = this;
  108. let inputValue = e.detail.value;
  109. that.setData({
  110. Value: inputValue,
  111. })
  112. wx.showLoading({
  113. title: '正在验证',
  114. mask: true
  115. })
  116. wx.request({
  117. url: api.authentication,
  118. header: {
  119. 'Authorization': wx.getStorageSync('token')
  120. },
  121. data: {
  122. phone: that.data.phone,
  123. code: that.data.Value
  124. },
  125. success(res) {
  126. wx.hideLoading()
  127. console.log(res);
  128. if (res.data.code === 1) {
  129. wx.showToast({
  130. title: res.data.msg,
  131. icon: 'success',
  132. mask: true,
  133. success() {
  134. setTimeout(() => {
  135. wx.navigateTo({
  136. url: '/pages/authorizesuccessful/authorizesuccessful',
  137. })
  138. }, 1500)
  139. }
  140. })
  141. } else {
  142. wx.showToast({
  143. title: res.data.msg,
  144. mask: true,
  145. icon: 'none',
  146. duration: 2000
  147. })
  148. }
  149. },
  150. fail(err) {
  151. wx.hideLoading()
  152. wx.showToast({
  153. title: '发起网络请求失败',
  154. icon: 'none',
  155. mask: true
  156. })
  157. },
  158. complete() {
  159. }
  160. })
  161. }
  162. })