authorization.vue 852 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <view>
  3. <view class="title">
  4. 平安E家小程序需要获得您的用户信息
  5. </view>
  6. <image src="../../static/authorization.png" style="width: 100%;height: 503rpx;margin-top: 48rpx;"></image>
  7. <button class="btn" @getuserinfo="login">授权并登陆</button>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data(){
  13. return{
  14. }
  15. },
  16. methods:{
  17. // 授权登录
  18. login(){
  19. }
  20. }
  21. }
  22. </script>
  23. <style>
  24. .title{
  25. width: 504rpx;
  26. height: 118rpx;
  27. text-align: center;
  28. margin: 0 auto;
  29. font-size: 40rpx;
  30. color:rgba(51,51,51,1);
  31. margin-top: 246rpx;
  32. font-family:PingFang SC;
  33. font-weight:400;
  34. }
  35. .btn{
  36. width: 702rpx;
  37. height: 88rpx;
  38. background:rgba(41,138,253,1);
  39. color:rgba(255,255,255,1);
  40. font-size: 36rpx;
  41. font-family:PingFang SC;
  42. font-weight:bold;
  43. margin-top: 170rpx;
  44. }
  45. </style>