newphone.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <template>
  2. <view class="index">
  3. <view class="">
  4. <view class="title">
  5. 新手机号
  6. </view>
  7. <view class="phone u-flex">
  8. <input type="number" placeholder="请输入手机号">
  9. </view>
  10. <view class="phone u-flex">
  11. <input type="number" placeholder="请输入短信验证码">
  12. <text class="code" @click="send">{{tips}}</text>
  13. </view>
  14. <view class="publish" @click="next">
  15. 提交
  16. </view>
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {
  24. tips:'获取验证码',
  25. s: 60,
  26. time: null,
  27. }
  28. },
  29. methods: {
  30. next(){
  31. uni.navigateTo({
  32. url:'newphone'
  33. })
  34. },
  35. send() {
  36. if (this.s == 60) {
  37. if (!this.tel) {
  38. uni.showToast({
  39. title: "请输入手机号",
  40. duration: 2000,
  41. icon: "none",
  42. });
  43. return false;
  44. }
  45. uni.showLoading({
  46. mask: true,
  47. title: "请稍后"
  48. })
  49. var result = {}
  50. result.phone = this.tel
  51. result.event = 'register'
  52. this.$u.post('/api/Sms/send', result).then((res) => {
  53. uni.hideLoading()
  54. uni.showToast({
  55. title: res.msg,
  56. duration: 2000,
  57. icon: "none",
  58. });
  59. if (res.code == 1) {
  60. this.time = setInterval(() => {
  61. this.s--
  62. this.tips = `${this.s}s`
  63. if (this.s == 0) {
  64. this.s = 60
  65. this.tips = '重新发送'
  66. clearInterval(this.time)
  67. }
  68. }, 1000)
  69. }
  70. });
  71. } else {
  72. uni.showToast({
  73. title: "请稍后再试",
  74. duration: 2000,
  75. icon: "none",
  76. });
  77. return false;
  78. }
  79. },
  80. }
  81. }
  82. </script>
  83. <style lang="scss">
  84. .publish{
  85. margin: 128rpx auto;
  86. width: 650rpx;
  87. height: 104rpx;
  88. line-height: 104rpx;
  89. text-align: center;
  90. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  91. border-radius: 52rpx;
  92. font-size: 36rpx;
  93. color: #fff;
  94. }
  95. .index{
  96. padding: 70rpx 60rpx 0;
  97. color: #222222;
  98. .title{
  99. font-size: 44rpx;
  100. font-weight: 600;
  101. margin-bottom: 50rpx;
  102. }
  103. .phone{
  104. height: 128rpx;
  105. line-height: 128rpx;
  106. border-bottom: 2rpx solid #F2F2F2;
  107. input{
  108. flex: 1;
  109. }
  110. .code{
  111. font-size: 32rpx;
  112. font-family: PingFangSC-Regular, PingFang SC;
  113. font-weight: 400;
  114. color: #999999;
  115. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  116. -webkit-background-clip: text;
  117. -webkit-text-fill-color: transparent;
  118. }
  119. }
  120. }
  121. </style>