change-pwd.vue 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. <template>
  2. <view class="change-pwd">
  3. <!-- <u-navbar back-icon-color="#000" :border-bottom="false"></u-navbar> -->
  4. <view class="change-header u-flex-col">
  5. <text>修改密码</text>
  6. <text>当前手机号:{{mobile.replace(/(\d{3})\d{4}(\d{4})/, '$1****$2')}}</text>
  7. </view>
  8. <view class="change-new-item u-flex">
  9. <input class="input2" type="text" placeholder="请输入短信验证码" v-model="code">
  10. <view class="input-box u-flex u-row-between">
  11. <text class="send" @click="getCode" v-if="!timeEnd && !verificationTime ">获取验证码</text>
  12. <text class="send" v-else-if="verificationTime">{{verificationTime}}s</text>
  13. <text class="send" @click="getCode" v-else-if="timeEnd">重新获取验证码</text>
  14. </view>
  15. </view>
  16. <view class="change-new-item u-flex">
  17. <input class="input2" type="text" password maxlength="16" placeholder="请使用8-16位数字及字母组合" v-model="pwd1">
  18. </view>
  19. <view class="change-new-item u-flex">
  20. <input class="input2" type="text" password maxlength="16" placeholder="请再次确认密码" v-model="pwd2">
  21. </view>
  22. <view class="change-btn" @click="save">
  23. 确认修改
  24. </view>
  25. <!-- <u-verification-code :seconds="seconds" ref="uCode" @change="codeChange"></u-verification-code> -->
  26. </view>
  27. </template>
  28. <script>
  29. import {
  30. index,
  31. getCode,
  32. resetpwd,
  33. check
  34. } from "@/units/inquire.js"
  35. export default {
  36. data() {
  37. return {
  38. mobile: '',
  39. tel: '',
  40. code: '',
  41. tips: '',
  42. // refCode: null,
  43. seconds: 60,
  44. pwd1: '',
  45. pwd2: '',
  46. verificationTime: "",
  47. timeEnd: false
  48. }
  49. },
  50. onLoad() {
  51. this.getuser()
  52. },
  53. methods: {
  54. save() {
  55. if (!this.code) {
  56. this.$u.toast('请输入短信验证码')
  57. return
  58. }
  59. if (!/^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]{8,16}$/.test(this.pwd1)) {
  60. this.$u.toast('请使用8-16位数字及字母组合')
  61. return
  62. }
  63. if (this.pwd1 != this.pwd2) {
  64. this.$u.toast("两次密码不一致")
  65. return
  66. }
  67. },
  68. resetpwd(){
  69. resetpwd({
  70. mobile: this.mobile,
  71. captcha: 1,
  72. newpassword: this.pwd1,
  73. newpassword_confirm: this.pwd2
  74. }).then(res => {
  75. this.$u.toast(res.msg)
  76. if (res.code == 1) {
  77. setTimeout(() => {
  78. uni.navigateBack()
  79. }, 800)
  80. }
  81. })
  82. },
  83. check() {
  84. check({
  85. mobile: this.mobile,
  86. captcha: this.code,
  87. event: "resetpwd"
  88. }).then(res => {
  89. if(res.code == 1){
  90. this.resetpwd()
  91. }else{
  92. this.$u.toast(res.msg)
  93. }
  94. })
  95. },
  96. getCode() {
  97. //获取验证码接口
  98. getCode({
  99. mobile: this.mobile,
  100. event: 'resetpwd'
  101. }).then(res => {
  102. // this.getcode = false
  103. if (res.code == 1) {
  104. uni.showLoading({
  105. title: '正在获取验证码',
  106. mask: true
  107. })
  108. uni.hideLoading();
  109. // 这里此提示会被this.start()方法中的提示覆盖
  110. this.$u.toast('验证码已发送');
  111. // 通知验证码组件内部开始倒计时
  112. // this.$refs.uCode.start();
  113. this.verificationTime = 30
  114. this.verificationDown()
  115. } else {
  116. this.$u.toast(res.msg)
  117. }
  118. })
  119. if (true) {
  120. // 模拟向后端请求验证码
  121. } else {
  122. this.$u.toast('倒计时结束后再发送');
  123. }
  124. },
  125. //验证码倒计时
  126. verificationDown() {
  127. // 设置定时器
  128. this.timer = setInterval(() => {
  129. this.verificationTime = this.verificationTime - 1
  130. if (this.verificationTime < 10) this.verificationTime = '0' + this.verificationTime
  131. if (this.verificationTime <= 0) {
  132. // 清除定时器
  133. clearInterval(this.timer)
  134. this.timeEnd = true
  135. this.verificationTime = false
  136. }
  137. }, 1000)
  138. },
  139. // getCode() {
  140. // if (this.$refs.uCode.canGetCode) {
  141. // // 模拟向后端请求验证码
  142. // uni.showLoading({
  143. // mask: true,
  144. // title: '正在获取验证码'
  145. // })
  146. // this.$u.post('/api/sms/send', {
  147. // mobile: this.mobile,
  148. // event: 'resetpwd'
  149. // }).then(res => {
  150. // this.$u.toast(res.msg);
  151. // if (res.code == 1) {
  152. // // 通知验证码组件内部开始倒计时
  153. // this.$refs.uCode.start();
  154. // }
  155. // })
  156. // } else {
  157. // this.$u.toast('倒计时结束后再发送');
  158. // }
  159. // },
  160. getuser() {
  161. index().then(res => {
  162. this.mobile = res.data.mobile
  163. })
  164. },
  165. }
  166. }
  167. </script>
  168. <style lang="scss">
  169. .send {
  170. font-size: 32rpx;
  171. font-family: PingFangSC-Regular, PingFang SC;
  172. font-weight: 400;
  173. color: #0C66C2;
  174. }
  175. .change-pwd {
  176. .change-btn {
  177. margin: 68rpx auto;
  178. width: 686rpx;
  179. line-height: 92rpx;
  180. background: #0C66C2;
  181. border-radius: 12rpx;
  182. text-align: center;
  183. font-size: 34rpx;
  184. font-family: PingFangSC-Regular, PingFang SC;
  185. font-weight: 400;
  186. color: #FFFFFF;
  187. }
  188. .change-new-item {
  189. height: 120rpx;
  190. border-bottom: 2rpx solid #F0F0F0;
  191. margin: 0 32rpx;
  192. .input2 {
  193. flex: 1;
  194. font-size: 36rpx;
  195. }
  196. .text2 {
  197. font-size: 32rpx;
  198. font-family: PingFangSC-Regular, PingFang SC;
  199. font-weight: 400;
  200. color: #0C66C2;
  201. width: 170rpx;
  202. text-align: center;
  203. }
  204. .text1 {
  205. font-size: 36rpx;
  206. font-family: SFPro-Regular, SFPro;
  207. font-weight: 400;
  208. color: #222222;
  209. margin-right: 8rpx;
  210. }
  211. .input1 {
  212. margin-left: 20rpx;
  213. flex: 1;
  214. font-size: 36rpx;
  215. }
  216. }
  217. .change-header {
  218. padding: 58rpx 32rpx;
  219. text:first-child {
  220. margin-bottom: 14rpx;
  221. font-size: 48rpx;
  222. font-family: PingFangSC-Medium, PingFang SC;
  223. font-weight: 500;
  224. color: #222222;
  225. }
  226. text:last-child {
  227. font-size: 28rpx;
  228. font-family: PingFangSC-Regular, PingFang SC;
  229. font-weight: 400;
  230. color: #555555;
  231. }
  232. }
  233. }
  234. </style>