setName.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. // pages/setName/setName.js
  2. import httpRequestApi from '../../utils/APIRequest';
  3. Page({
  4. /**
  5. * 页面的初始数据
  6. */
  7. data: {
  8. phone: '',
  9. name: '',
  10. headImg: ''
  11. },
  12. //获取输入名字
  13. getName: function ({detail}) {
  14. this.setData({
  15. name: detail.value,
  16. })
  17. },
  18. //获取输入手机号
  19. getPhone: function ({detail}) {
  20. this.setData({
  21. phone: detail.value,
  22. })
  23. },
  24. //保存修改
  25. Savemodification: function () {
  26. //console.log(this.data.name,this.data.phone);
  27. const name = this.data.name;
  28. const phone = this.data.phone;
  29. const reg = /^(13[0-9]|14[579]|15[0-3,5-9]|16[6]|17[0135678]|18[0-9]|19[89])\d{8}$/;
  30. if(phone !== '') {
  31. if(phone.length !== 11 || !reg.test(phone)){
  32. wx.showModal({
  33. title: '提示',
  34. content: '请输入正确手机号'
  35. })
  36. return;
  37. }
  38. }
  39. httpRequestApi.setUserInfo({
  40. "mobileNo": phone,
  41. "nickName": name,
  42. "avatar": ""
  43. }).success(res => {
  44. if(res.data.success) {
  45. wx.navigateBack();
  46. }
  47. })
  48. },
  49. /**
  50. * 生命周期函数--监听页面加载
  51. */
  52. onLoad: function (options) {
  53. //初始化获取个人信息
  54. httpRequestApi.getUserInfo().success(res => {
  55. const user = res.data.data;
  56. this.setData({
  57. name: user.nickName,
  58. phone: user.mobileNo,
  59. headImg: user.avatar
  60. })
  61. });
  62. },
  63. /**
  64. * 页面相关事件处理函数--监听用户下拉动作
  65. */
  66. onPullDownRefresh: function () {
  67. },
  68. /**
  69. * 页面上拉触底事件的处理函数
  70. */
  71. onReachBottom: function () {
  72. },
  73. /**
  74. * 用户点击右上角分享
  75. */
  76. onShareAppMessage: function () {
  77. }
  78. })