您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息

微信小程序商城开发之用微信授权并实现个人中心的页面代码

2025/6/18 12:07:42发布30次查看
本篇文章给大家带来的内容是关于微信小程序商城开发之用微信授权并实现个人中心的页面代码,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
看效果
开发计划
1、实现微信授权并获取用户信息
2、个人中心页面布局
一、实现微信授权并获取用户信息
mine.js
onload: function () { if (app.globaldata.userinfo) { this.setdata({ userinfo: app.globaldata.userinfo, hasuserinfo: true }) } else if (this.data.caniuse) { // 由于 getuserinfo 是网络请求,可能会在 page.onload 之后才返回 // 所以此处加入 callback 以防止这种情况 app.userinforeadycallback = res => { this.setdata({ userinfo: res.userinfo, hasuserinfo: true }) } } else { // 在没有 open-type=getuserinfo 版本的兼容处理 wx.getuserinfo({ success: res => { app.globaldata.userinfo = res.userinfo this.setdata({ userinfo: res.userinfo, hasuserinfo: true }) } }) } }, getuserinfo: function (e) { console.log(e) app.globaldata.userinfo = e.detail.userinfo this.setdata({ userinfo: e.detail.userinfo, hasuserinfo: true }) }
二、实现微信授权并获取用户信息
mine.wxml
<view class="userinfo"> <button wx:if="{{!hasuserinfo && caniuse}}" open-type="getuserinfo" bindgetuserinfo="getuserinfo" class="userinfo-btn"> 点击微信授权 </button> <block wx:else> <image bindtap="bindviewtap" class="userinfo-avatar" src="{{userinfo.avatarurl}}" background-size="cover"></image> <text class="userinfo-nickname">{{userinfo.nickname}}</text> </block></view><view class="separate"></view><view class="order" catchtap="toorder"> <text class="myorder-text">我的订单</text> <text class="myorderlook-text">查看全部订单</text></view><view class="line"></view><view class="navs"> <block wx:for-items="{{orderitems}}" wx:key="name"> <view class="nav-item" catchtap="toorder" data-type="{{item.name}}" data-typeid="{{item.typeid}}"> <image src="{{item.imageurl}}" class="nav-image" /> <text>{{item.name}}</text> </view> </block></view><view class="separate"></view><view class="person-list"> <view class="list-item"> <image class="item-image" src="../../images/person/personal_card.png"></image> <text class="item-text">优惠券</text> </view> <view class="person-line"></view> <view class="list-item"> <image class="item-image" src="../../images/person/personal_favorite.png"></image> <text class="item-text">我的收藏</text> </view> <view class="person-line"></view> <view class="list-item"> <image class="item-image" src="../../images/person/personal_site.png"></image> <text class="item-text">收货地址</text> </view> <view class="person-line"></view> <view class="list-item"> <image class="item-image" src="../../images/person/personal_sale_record.png"></image> <text class="item-text">售后记录</text> </view> <view class="person-line"></view> <view class="list-item"> <image class="item-image" src="../../images/person/personal_evaluated.png"></image> <text class="item-text">我的评价</text> </view> <view class="person-line"></view> <view class="list-item"> <image class="item-image" src="../../images/person/personal_customer.png"></image> <text class="item-text">在线客服</text> </view></view><view class="separate"></view>
mine.wxss
.userinfo { display: flex; flex-direction: column; align-items: center; background: #f0145a; width: 100%; height: 300rpx;}.userinfo-btn{ margin-top: 50rpx; background: none !important; color: #fff !important; font-size: 40rpx;}.account-bg { width: 100%; height: 150rpx;}.userinfo-avatar { width: 108rpx; height: 108rpx; margin: 40rpx; border-radius: 50%;}.userinfo-nickname { color: #fff;}/* 订单 */.order { display: flex; flex-direction: row; align-items: center; width: 100%; height: 90rpx;}.myorder-text { font-size: 34rpx; color: gray; margin: 20rpx; width: 40%;}.myorderlook-text { font-size: 32rpx; color: gray; position: relative; right: 20rpx; width: 60%; text-align: right;}.next-image { width: 20rpx; height: 25rpx; position: relative; right: 10rpx;}.navs { display: flex;}.nav-item { width: 25%; display: flex; align-items: center; flex-direction: column; padding: 20rpx;}.nav-item .nav-image { width: 55rpx; height: 55rpx; margin: 5rpx;}.nav-item text { margin-top: 20rpx; font-size: 28rpx; color: gray;}/* 列表 */.person-list { display: flex; flex-direction: column; align-items: left;}.list-item { display: flex; flex-direction: row; align-items: center; height: 80rpx;}.item-image { width: 40rpx; height: 40rpx; margin: 20rpx;}.item-text { color: gray; font-size: 30rpx; margin-left: 20rpx;}.person-line { width: 80%; height: 2rpx; background: lightgray; margin-left: 90rpx;}
mine.js
var app = getapp()page({ data: { userinfo: {}, hasuserinfo: false, caniuse: wx.caniuse('button.open-type.getuserinfo'), orderitems: [ { typeid: 0, name: '待付款', url: 'bill', imageurl: '../../images/person/personal_pay.png', }, { typeid: 1, name: '待收货', url: 'bill', imageurl: '../../images/person/personal_receipt.png', }, { typeid: 2, name: '待评价', url: 'bill', imageurl: '../../images/person/personal_comment.png' }, { typeid: 3, name: '退换/售后', url: 'bill', imageurl: '../../images/person/personal_service.png' } ], }, //事件处理函数 toorder: function () { wx.navigateto({ url: '../order/order' }) }}
mine.json
{ "navigationbartitletext": "个人中心"}
相关推荐:
微信小程序商城开发之实现商品加入购物车的功能(代码)
微信小程序商城开发之动态api实现特卖商品的流式布局代码
微信小程序商城开发之动态api实现商品的详情页的代码(下)
以上就是微信小程序商城开发之用微信授权并实现个人中心的页面代码的详细内容。
该用户其它信息

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录 Product