setPassword.vue 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <template>
  2. <!-- pages/setPassword/setPassword.wxml -->
  3. <view class="container">
  4. <view class="set-container">
  5. <form @submit="bindSubmit">
  6. <view class="form-container">
  7. <view class="form-item">
  8. <image src="/static/resource/images/shouji.png" class="form-img"></image>
  9. <input type="text" name="username" placeholder="请输入手机号" class="form-input" :value="username" @input="bindUsernameInput" />
  10. <!-- image wx:if="{{ username }}" src="/resource/images/x.png" class="form-img-right" bindtap="bindUsernameClear"></image -->
  11. </view>
  12. <view class="form-item code-form">
  13. <image src="/static/resource/images/duanxin.png" class="form-img"></image>
  14. <input type="text" name="code" placeholder="请输入验证码" class="form-input" />
  15. <view class="code-button" @tap="bindSendCode">
  16. <text class="code-text">{{ sec == 0 ? '获取验证码' : sec + 's后重发' }}</text>
  17. </view>
  18. <!-- image wx:if="{{ username }}" src="/resource/images/x.png" class="form-img-right" bindtap="bindUsernameClear"></image -->
  19. </view>
  20. <view class="form-item">
  21. <image src="/static/resource/images/mima.png" class="form-img"></image>
  22. <input type="text" password name="password" placeholder="请输入密码" class="form-input" />
  23. <!-- image wx:if="{{ password }}" src="/resource/images/x.png" class="form-img-right" bindtap="bindPasswordClear"></image -->
  24. </view>
  25. <view class="form-item">
  26. <image src="/static/resource/images/mima.png" class="form-img"></image>
  27. <input type="text" password name="password2" placeholder="请确认密码" class="form-input" />
  28. <!-- image wx:if="{{ password }}" src="/resource/images/x.png" class="form-img-right" bindtap="bindPasswordClear"></image -->
  29. </view>
  30. <view class="form-btn">
  31. <button class="login-btn" form-type="submit">确定</button>
  32. </view>
  33. </view>
  34. </form>
  35. </view>
  36. </view>
  37. </template>
  38. <script>
  39. // pages/setPassword/setPassword.js
  40. var config = require('../../common/config.js');
  41. var http = require('../../common/http.js');
  42. var common = require('../../common/common.js');
  43. var storage = require('../../common/storage.js');
  44. export default {
  45. data() {
  46. return {
  47. username: '',
  48. sec: 0,
  49. secTimer: null
  50. };
  51. }
  52. /**
  53. * 生命周期函数--监听页面加载
  54. */,
  55. onLoad: function (options) {},
  56. /**
  57. * 生命周期函数--监听页面初次渲染完成
  58. */
  59. onReady: function () {},
  60. /**
  61. * 生命周期函数--监听页面显示
  62. */
  63. onShow: function () {},
  64. /**
  65. * 生命周期函数--监听页面隐藏
  66. */
  67. onHide: function () {},
  68. /**
  69. * 生命周期函数--监听页面卸载
  70. */
  71. onUnload: function () {},
  72. /**
  73. * 页面相关事件处理函数--监听用户下拉动作
  74. */
  75. onPullDownRefresh: function () {},
  76. /**
  77. * 页面上拉触底事件的处理函数
  78. */
  79. onReachBottom: function () {},
  80. /**
  81. * 用户点击右上角分享
  82. */
  83. onShareAppMessage: function () {},
  84. methods: {
  85. bindUsernameInput: function (e) {
  86. this.setData({
  87. username: e.detail.value
  88. });
  89. },
  90. bindSendCode() {
  91. if (this.sec == 0) {
  92. this.setData({
  93. sec: 60
  94. });
  95. this.secTimer = setInterval(() => {
  96. if (this.sec > 0) {
  97. this.setData({
  98. sec: this.sec - 1
  99. });
  100. } else {
  101. clearInterval(this.secTimer);
  102. }
  103. }, 1000);
  104. http.postApi(
  105. config.API_USER_VERIFY_CODE,
  106. {
  107. phone: this.username
  108. },
  109. (resp) => {
  110. if (resp.data.code === 200) {
  111. } else {
  112. common.simpleToast(resp.data.msg);
  113. }
  114. }
  115. );
  116. }
  117. },
  118. bindSubmit(e) {
  119. console.log(e.detail.value);
  120. const username = e.detail.value.username;
  121. const code = e.detail.value.code;
  122. const password = e.detail.value.password;
  123. const password2 = e.detail.value.password2;
  124. if (common.isEmpty(username)) {
  125. common.simpleToast('请输入手机号');
  126. return;
  127. }
  128. if (common.isEmpty(code)) {
  129. common.simpleToast('请输入验证码');
  130. return;
  131. }
  132. if (common.isEmpty(password)) {
  133. common.simpleToast('请输入密码');
  134. return;
  135. }
  136. if (password != password2) {
  137. common.simpleToast('两次输入密码不一致');
  138. return;
  139. }
  140. http.postApi(
  141. config.API_USER_CHANGE_PASSWORD,
  142. {
  143. phone: username,
  144. code: code,
  145. password: password
  146. },
  147. (resp) => {
  148. if (resp.data.code === 200) {
  149. common.simpleToast('设置成功');
  150. setTimeout(function () {
  151. uni.navigateBack({
  152. delta: 1
  153. });
  154. }, 1500);
  155. } else {
  156. common.simpleToast(resp.data.msg);
  157. }
  158. }
  159. );
  160. }
  161. }
  162. };
  163. </script>
  164. <style>
  165. @import './setPassword.css';
  166. </style>