phonenumber.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. const app = getApp();
  2. const api = require('../../api/api');
  3. Page({
  4. data: {
  5. phoneCode: '86',
  6. verifyCode: '',
  7. telPhone: '',
  8. navbarData: {
  9. showCapsule: 1, //是否显示左上角图标 1表示显示 0表示不显示
  10. title: '个人认证', //导航栏 中间的标题,
  11. capsuleMode: 'navBack', //显示模式(navBack:返回上一页;navHome:返回首页)
  12. },
  13. },
  14. choosePhoneCode() {
  15. wx.navigateTo({
  16. url: '/pages/countryPhoneCode/countryPhoneCode',
  17. })
  18. },
  19. getTelValue(e) {
  20. this.setData({
  21. telPhone: e.detail.value
  22. })
  23. },
  24. getCodeValue(e) {
  25. this.setData({
  26. verifyCode: e.detail.value
  27. })
  28. },
  29. submitData() {
  30. let that = this;
  31. let phonenumber = that.data.phoneCode + '-' + that.data.telPhone;
  32. let phone = Number(that.data.phoneCode + that.data.telPhone);
  33. if (that.data.phoneCode != '' && that.data.telPhone != '') {
  34. /* var regExp = new RegExp("^1[3578]\\d{9}$");
  35. if (regExp.test(that.data.telPhone)) {
  36. } else {
  37. wx.showToast({
  38. title: '手机号格式错误',
  39. icon: 'error',
  40. mask: true
  41. })
  42. } */
  43. wx.showLoading({
  44. title: '短信发送中',
  45. mask: true
  46. })
  47. wx.request({
  48. url: api.send_sms,
  49. header: {
  50. 'Authorization': wx.getStorageSync('token')
  51. },
  52. data: {
  53. phone: phone
  54. },
  55. method: 'POST',
  56. success(res) {
  57. console.log(res);
  58. wx.hideLoading()
  59. if (res.data.code === 1) {
  60. wx.showToast({
  61. title: res.data.msg,
  62. icon: 'success',
  63. mask: true,
  64. success() {
  65. setTimeout(() => {
  66. wx.setStorageSync('phonenumber', phonenumber);
  67. wx.navigateTo({
  68. url: '/pages/verifycode/verifycode?phone=' + phonenumber,
  69. })
  70. }, 1500)
  71. }
  72. })
  73. } else {
  74. wx.showToast({
  75. title: res.data.msg,
  76. mask: true,
  77. icon: 'none',
  78. duration: 2000
  79. })
  80. }
  81. },
  82. fail(err) {
  83. wx.hideLoading()
  84. wx.showToast({
  85. title: '发起网络请求失败',
  86. icon: 'none',
  87. mask: true
  88. })
  89. },
  90. complete() {
  91. // wx.hideLoading()
  92. }
  93. })
  94. } else {
  95. wx.showToast({
  96. title: '手机号码为空!',
  97. icon: 'error',
  98. mask: true
  99. })
  100. }
  101. }
  102. })