changephone.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. <template>
  2. <view class="index">
  3. <view class="" v-if="isStart">
  4. <view class="title">
  5. 更换手机号
  6. </view>
  7. <view class="phone u-flex">
  8. <input type="number" placeholder="请输入手机号" v-model="oldPhone">
  9. </view>
  10. <view class="phone u-flex">
  11. <input type="number" placeholder="请输入短信验证码" v-model="oldCode">
  12. <text class="code" @click="send">{{tips}}</text>
  13. </view>
  14. <view class="publish" @click="next">
  15. 下一步
  16. </view>
  17. </view>
  18. <view class="" v-else>
  19. <view class="title">
  20. 新手机号
  21. </view>
  22. <view class="phone u-flex">
  23. <input type="number" placeholder="请输入手机号" v-model="newPhone">
  24. </view>
  25. <view class="phone u-flex">
  26. <input type="number" placeholder="请输入短信验证码" v-model="newCode">
  27. <text class="code" @click="send">{{tips}}</text>
  28. </view>
  29. <view class="publish" @click="submit">
  30. 提交
  31. </view>
  32. </view>
  33. </view>
  34. </template>
  35. <script>
  36. export default {
  37. data() {
  38. return {
  39. tips:'获取验证码',
  40. s: 60,
  41. time: null,
  42. isStart:true,
  43. oldPhone:'',
  44. oldCode:'',
  45. newPhone:'',
  46. newCode:'',
  47. }
  48. },
  49. methods: {
  50. submit(){
  51. if (!this.newPhone) {
  52. this.$u.toast('请输入新手机号')
  53. return
  54. }
  55. if (!this.newCode) {
  56. this.$u.toast('请输入新手机号验证码')
  57. return
  58. }
  59. uni.$u.http.post('/api/user/eidt_phone',{phone:this.oldPhone,code:this.oldCode,new_phone:this.newPhone,new_code:this.newCode}).then(res => {
  60. if(res.code==1){
  61. this.$u.toast(res.msg)
  62. setTimeout(()=>{
  63. uni.navigateBack({
  64. })
  65. },2000)
  66. }
  67. })
  68. },
  69. next(){
  70. if (!this.oldPhone) {
  71. this.$u.toast('请输入旧手机号')
  72. return
  73. }
  74. if (!this.oldCode) {
  75. this.$u.toast('请输入旧手机号验证码')
  76. return
  77. }
  78. this.s=60
  79. this.tips='获取验证码'
  80. // uni.navigateTo({
  81. // url:'newphone'
  82. // })
  83. this.isStart=false
  84. },
  85. send() {
  86. if (this.s == 60) {
  87. if(this.isStart){
  88. if (!this.oldPhone) {
  89. uni.showToast({
  90. title: "请输入旧手机号",
  91. duration: 2000,
  92. icon: "none",
  93. });
  94. return false;
  95. }
  96. }else{
  97. if (!this.newPhone) {
  98. uni.showToast({
  99. title: "请输入新手机号",
  100. duration: 2000,
  101. icon: "none",
  102. });
  103. return false;
  104. }
  105. }
  106. uni.showLoading({
  107. mask: true,
  108. title: "请稍后"
  109. })
  110. var result = {}
  111. result.phone = this.tel
  112. result.event = 'register'
  113. this.$u.post('/api/Sms/send', result).then((res) => {
  114. uni.hideLoading()
  115. uni.showToast({
  116. title: res.msg,
  117. duration: 2000,
  118. icon: "none",
  119. });
  120. if (res.code == 1) {
  121. this.time = setInterval(() => {
  122. this.s--
  123. this.tips = `${this.s}s`
  124. if (this.s == 0) {
  125. this.s = 60
  126. this.tips = '重新发送'
  127. clearInterval(this.time)
  128. }
  129. }, 1000)
  130. }
  131. });
  132. } else {
  133. uni.showToast({
  134. title: "请稍后再试",
  135. duration: 2000,
  136. icon: "none",
  137. });
  138. return false;
  139. }
  140. },
  141. }
  142. }
  143. </script>
  144. <style lang="scss">
  145. .publish{
  146. margin: 128rpx auto;
  147. width: 650rpx;
  148. height: 104rpx;
  149. line-height: 104rpx;
  150. text-align: center;
  151. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  152. border-radius: 52rpx;
  153. font-size: 36rpx;
  154. color: #fff;
  155. }
  156. .index{
  157. padding: 70rpx 60rpx 0;
  158. color: #222222;
  159. .title{
  160. font-size: 44rpx;
  161. font-weight: 600;
  162. margin-bottom: 50rpx;
  163. }
  164. .phone{
  165. height: 128rpx;
  166. line-height: 128rpx;
  167. border-bottom: 2rpx solid #F2F2F2;
  168. input{
  169. flex: 1;
  170. }
  171. .code{
  172. font-size: 32rpx;
  173. font-family: PingFangSC-Regular, PingFang SC;
  174. font-weight: 400;
  175. color: #999999;
  176. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  177. -webkit-background-clip: text;
  178. -webkit-text-fill-color: transparent;
  179. }
  180. }
  181. }
  182. </style>