authorization.vue 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <view>
  3. <view class="title">
  4. 平安E家小程序需要获得您的用户信息
  5. </view>
  6. <image src="../../static/empower_image@2x.png" style="width: 100%;height: 503rpx;margin-top: 48rpx;"></image>
  7. <button class="btn" open-type="getUserInfo" @getuserinfo="login" :loading="isLoading">授权并登陆</button>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. isLoading:false,//按钮加载绑定值
  15. }
  16. },
  17. methods: {
  18. getPhoneNumber(e){
  19. console.log(e)
  20. },
  21. // 授权登录
  22. login(e) {
  23. console.log(e)
  24. this.isLoading=true
  25. // 调起微信授权
  26. uni.login({
  27. provider: 'weixin',
  28. success: (res)=> {
  29. this.http.httpRequest("/wxapplet/ownersid/WeChatLogin", 'post', {
  30. phoneNumBer: uni.getStorageSync('phoneNumber'),
  31. loginName: e.detail.userInfo.nickName,
  32. avatar: e.detail.userInfo.avatarUrl,
  33. cardNo:uni.getStorageSync('idNumber')
  34. },true).then((res)=>{
  35. this.isLoading=false
  36. if(res.code==0){
  37. uni.setStorageSync('createBy',res.data[0].createBy)
  38. uni.switchTab({
  39. url:"../index/index"
  40. })
  41. }else{
  42. this.isLoading=false
  43. uni.showToast({
  44. title:res.msg,
  45. "icon":'none'
  46. })
  47. }
  48. }).catch(()=>{
  49. this.isLoading=false
  50. })
  51. }
  52. });
  53. }
  54. }
  55. }
  56. </script>
  57. <style>
  58. .title {
  59. width: 504rpx;
  60. height: 118rpx;
  61. text-align: center;
  62. margin: 0 auto;
  63. font-size: 40rpx;
  64. color: rgba(51, 51, 51, 1);
  65. margin-top: 246rpx;
  66. font-family: PingFang SC;
  67. font-weight: 400;
  68. }
  69. .btn {
  70. width: 702rpx;
  71. height: 88rpx;
  72. background: rgba(41, 138, 253, 1);
  73. color: rgba(255, 255, 255, 1);
  74. font-size: 36rpx;
  75. font-family: PingFang SC;
  76. font-weight: bold;
  77. margin-top: 170rpx;
  78. }
  79. </style>