modifyPhone.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <template>
  2. <view class="container">
  3. <form @submit="bindModifyPhone">
  4. <view class="form-container">
  5. <view class="form-item">
  6. <input type="number" name="phone" @input="inputPhone" :placeholder="$t('请输入绑定的新手机号')" />
  7. </view>
  8. <view class="form-item flex-row flex-between">
  9. <input type="number" name="verify_code" :placeholder="$t('请输入验证码')" @input="inputVerifyCode" />
  10. <view class="send-code">
  11. <form @submit="bindGetVerifyCode">
  12. <button class="def-btn-verify" form-type="submit">
  13. <text v-if="codeGetting"> {{curTime}}{{ $t('秒后再次获取') }}</text>
  14. <text v-else>{{ $t('获取验证码') }}</text>
  15. </button>
  16. </form>
  17. </view>
  18. </view>
  19. <view class="form-btn">
  20. <button class="login-btn" form-type="submit">{{ $t('绑定新手机号') }}</button>
  21. </view>
  22. </view>
  23. </form>
  24. </view>
  25. </template>
  26. <script>
  27. var config = require('../../common/config.js');
  28. var common = require('../../common/common.js');
  29. var http = require('../../common/http.js');
  30. var storage = require('../../common/storage.js');
  31. var user = require('../../common/user.js');
  32. export default {
  33. data() {
  34. return {
  35. codeGetting: false,
  36. curTime: 60,
  37. phone: '',
  38. verify_code: '',
  39. timer: null
  40. };
  41. },
  42. /**
  43. * 生命周期函数--监听页面加载
  44. */
  45. onLoad: function(options) {
  46. },
  47. /**
  48. * 生命周期函数--监听页面显示
  49. */
  50. onShow: function() {
  51. },
  52. methods: {
  53. inputPhone: function(e) {
  54. const phone = e.detail.value
  55. this.phone = phone
  56. },
  57. bindGetVerifyCode: function(e) {
  58. if (this.codeGetting)
  59. return
  60. if (!this.phone) {
  61. common.alert(this.$t('提示'), this.$t('请输入手机号码'));
  62. return;
  63. }
  64. if (!common.isPhone(this.phone)) {
  65. common.alert(this.$t('提示'), this.$t('请检测您的手机号码是否正确'));
  66. return;
  67. }
  68. this.setData({
  69. codeGetting: true
  70. })
  71. const me = this
  72. me.timer = setInterval(function() {
  73. let curTime = me.curTime - 1
  74. if (curTime === 0) {
  75. clearTimeout(me.timer);
  76. me.setData({
  77. codeGetting: false,
  78. curTime: 60
  79. })
  80. } else {
  81. me.setData({
  82. curTime: curTime
  83. })
  84. }
  85. }, 1000)
  86. const accountInfo = uni.getAccountInfoSync()
  87. http.getApi(config.API_USER_VERIFY_CODE, {
  88. appid: accountInfo.miniProgram.appId,
  89. phone: this.phone
  90. }, function(response) {
  91. if (response.data.code === 200) {
  92. } else {
  93. common.alert(this.$t('提示'), response.data.msg);
  94. }
  95. })
  96. },
  97. inputVerifyCode: function(e) {
  98. this.verify_code = e.detail.value
  99. },
  100. bindModifyPhone() {
  101. //#ifdef MP-ALIPAY
  102. const _source = 'ali'
  103. //#endif
  104. //#ifdef MP-WEIXIN
  105. const _source = 'wx'
  106. //#endif
  107. const pData = {
  108. phone: this.phone,
  109. verify_code: this.verify_code,
  110. source: _source
  111. }
  112. http.postApi(config.API_MODIFY_PHONE, pData, function(resp) {
  113. if (resp.data.code === 200) {
  114. common.simpleToast(this.$t('修改成功'))
  115. setTimeout(function() {
  116. uni.reLaunch({
  117. url: '/pages/index/index',
  118. })
  119. }, 2000)
  120. } else {
  121. common.simpleToast(resp.data.msg)
  122. }
  123. })
  124. },
  125. }
  126. };
  127. </script>
  128. <style>
  129. @import './modifyPhone.css';
  130. </style>