12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <template>
- <view>
- <view class="title">
- 平安E家小程序需要获得您的用户信息
- </view>
- <image src="../../static/authorization.png" style="width: 100%;height: 503rpx;margin-top: 48rpx;"></image>
- <button class="btn" @getuserinfo="login">授权并登陆</button>
- </view>
- </template>
- <script>
- export default {
- data(){
- return{
-
- }
- },
- methods:{
- // 授权登录
- login(){
-
- }
- }
- }
- </script>
- <style>
- .title{
- width: 504rpx;
- height: 118rpx;
- text-align: center;
- margin: 0 auto;
- font-size: 40rpx;
- color:rgba(51,51,51,1);
- margin-top: 246rpx;
- font-family:PingFang SC;
- font-weight:400;
- }
- .btn{
- width: 702rpx;
- height: 88rpx;
- background:rgba(41,138,253,1);
- color:rgba(255,255,255,1);
- font-size: 36rpx;
- font-family:PingFang SC;
- font-weight:bold;
- margin-top: 170rpx;
- }
-
- </style>
|