change-tel.vue 5.4 KB

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