|
@@ -7,7 +7,8 @@ Page({
|
|
|
* 页面的初始数据
|
|
|
*/
|
|
|
data: {
|
|
|
- list:[]
|
|
|
+ list:[],
|
|
|
+ show:1
|
|
|
},
|
|
|
|
|
|
/**
|
|
@@ -21,6 +22,14 @@ Page({
|
|
|
openid: app.globalData.openid
|
|
|
})
|
|
|
this.getData();
|
|
|
+ wx.getStorage({
|
|
|
+ key: 'userInfo',
|
|
|
+ success: res=> {
|
|
|
+ if(res.data){
|
|
|
+ this.setData({show:0})
|
|
|
+ }
|
|
|
+ },
|
|
|
+ })
|
|
|
},
|
|
|
getData:function(){
|
|
|
wx.request({
|
|
@@ -77,6 +86,28 @@ Page({
|
|
|
url: '../pay/pay?id='+e.target.dataset.id,
|
|
|
})
|
|
|
},
|
|
|
+ onGotUserInfo: function (e) {
|
|
|
+ wx.setStorage({
|
|
|
+ key: 'userInfo',
|
|
|
+ data: e.detail.userInfo,
|
|
|
+ })
|
|
|
+ console.log(app.globalData.openid)
|
|
|
+ wx.request({
|
|
|
+ url: host+'/api/wx/auth',
|
|
|
+ method:'POST',
|
|
|
+ data:{
|
|
|
+ nickname: e.detail.userInfo.nickName,
|
|
|
+ avatar: e.detail.userInfo.avatarUrl,
|
|
|
+ openid: app.globalData.openid,
|
|
|
+ },
|
|
|
+ success:res=>{
|
|
|
+ console.log(res)
|
|
|
+ this.setData({
|
|
|
+ show:0
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
|
|
|
/**
|
|
|
* 生命周期函数--监听页面初次渲染完成
|