login.js 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. // pages/login/login.js
  2. var common = require('../common/common.js')
  3. const host_url = common.base_host
  4. Page({
  5. /**
  6. * 页面的初始数据
  7. */
  8. data: {
  9. loading:false,
  10. phone_value:""
  11. },
  12. bindPhoneInput:function(e){
  13. this.data.phone_value = e.detail.value
  14. },
  15. bindLogin:function(e) {
  16. const that = this
  17. if(!(/^1[3456789]\d{9}$/.test(this.data.phone_value))){
  18. this.setData({
  19. error:"电话号码格式不对"
  20. })
  21. return
  22. }
  23. wx.request({
  24. url: host_url + "/orchardacqui/login",
  25. method:'GET',
  26. data:{
  27. phone:this.data.phone_value
  28. },
  29. success(res){
  30. let data = res.data
  31. if(data.retHead.errCode == 0){
  32. wx.setStorage({
  33. data: that.data.phone_value,
  34. key: 'phone_number',
  35. })
  36. wx.navigateBack()
  37. }else{
  38. that.setData({
  39. error:data.retHead.errMsg
  40. })
  41. }
  42. },
  43. fail(error){
  44. that.setData({
  45. error:"网络出错"
  46. })
  47. }
  48. })
  49. }
  50. })