微信小程序登录按钮遮罩浮层效果的实现方法
程序员文章站
2022-06-22 16:33:41
前言
近期在写一点小东西,碰到遮罩...所以将实现的过程分享出来,供大家参考学习,下面话不多说了,来一起看看详细的介绍吧
逻辑如下:
1:第一次登陆的时候会有一个...
前言
近期在写一点小东西,碰到遮罩...所以将实现的过程分享出来,供大家参考学习,下面话不多说了,来一起看看详细的介绍吧
逻辑如下:
1:第一次登陆的时候会有一个登录按钮遮罩浮层提示去授权登录
2:在弹出的授权框里,拒绝授权按钮的时候,界面的数据没有办法加载出来,允许授权的时候,界面就能渲染从后端拿过来的数据
3:判断是否授过权(判断是第一次登录还是第n次),如果用户第一次已经登录授权,后面继续登录的时候悬浮框就不会再出现
效果如下:
代码如下:
index.html
<!-- 授权弹框提示 --> <view class="container"> <view class="float" hidden='{{viewshowed}}'> <view class='floatcontent'> <view class='floattext'> <text>获取微信授权信息</text> <button open-type="getuserinfo" bindgetuserinfo="getuserinfo">去设置</button> </view> </view> </view> </view>
index.wxss
.float { height: 100%; width: 100%; position: fixed; background-color: rgba(0, 0, 0, 0.5); z-index: 2; top: 0; left: 0; } .floatcontent { padding: 20rpx 0; width: 80%; background: #fff; margin: 40% auto; border-radius: 20rpx; display: flex; flex-direction: column; justify-content: space-around; align-items: center; position: relative; height: 332rpx; } .floattext text { color: #000; font-size: 40rpx; display: block; text-align: center; line-height: 90rpx; border-radius: 30rpx; margin-right: 10rpx; }
index.js
js代码,与后台数据库交互,授权的信息存入了数据库,可根据自己的需要做出相应的修改。
//index.js //获取应用实例 var app = getapp() page({ data: { carlist: [], //车辆数据集合 viewshowed: true, //控制授权是否显示 }, onload: function () { var that = this; app.getopenid().then(function (res) { if (res.status == 200) { //判断是否授权 wx.getsetting({ success(e) { if (e.authsetting['scope.userinfo']) { //已经授权 that.getcars(res.data); } else { //没有授权,显示授权框 that.setdata({ viewshowed: false, }) } } }) } }) }, getuserinfo: function (e) { var that = this; that.setdata({ viewshowed: true, }); var userinfo = e.detail.userinfo; wx.request({ url: "http://localhost:8081/wpdeboserver/wx.do", data: { "openid": app.globaldata.openid, "nickname": userinfo.nickname }, method: 'put', header: { 'content-type': 'application/json' }, success: function (res) { //查询绑定车辆 that.getcars(app.globaldata.openid); } }); }, })
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。