authorization.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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">授权并登陆</button>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. }
  15. },
  16. methods: {
  17. // 授权登录
  18. login(e) {
  19. console.log(e)
  20. uni.login({
  21. provider: 'weixin',
  22. success: (res)=> {
  23. console.log(res);
  24. this.http.httpRequest("/user/userlogin", 'get', {
  25. code: res.code,
  26. nickname: e.detail.userInfo.nickName,
  27. avatar: e.detail.userInfo.avatarUrl,
  28. invite_id:1
  29. },true).then((res)=>{
  30. console.log(res)
  31. })
  32. }
  33. });
  34. }
  35. }
  36. }
  37. </script>
  38. <style>
  39. .title {
  40. width: 504rpx;
  41. height: 118rpx;
  42. text-align: center;
  43. margin: 0 auto;
  44. font-size: 40rpx;
  45. color: rgba(51, 51, 51, 1);
  46. margin-top: 246rpx;
  47. font-family: PingFang SC;
  48. font-weight: 400;
  49. }
  50. .btn {
  51. width: 702rpx;
  52. height: 88rpx;
  53. background: rgba(41, 138, 253, 1);
  54. color: rgba(255, 255, 255, 1);
  55. font-size: 36rpx;
  56. font-family: PingFang SC;
  57. font-weight: bold;
  58. margin-top: 170rpx;
  59. }
  60. </style>