change-tel.vue 5.5 KB

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