You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
135 lines
3.0 KiB
135 lines
3.0 KiB
2 years ago
|
// pages/set/set.js
|
||
|
var app = getApp()
|
||
|
Page({
|
||
|
data: {
|
||
|
},
|
||
|
onLoad: function (options) {
|
||
|
wx.setNavigationBarColor({
|
||
|
frontColor: app.d.frontColor,
|
||
|
backgroundColor: app.d.bgcolor, //页面标题为路由参数
|
||
|
animation: {
|
||
|
duration: 400,
|
||
|
timingFunc: 'easeIn'
|
||
|
}
|
||
|
});
|
||
|
},
|
||
|
|
||
|
onReady: function () {
|
||
|
|
||
|
},
|
||
|
agreeGetUser: function (e) {
|
||
|
let that = this;
|
||
|
wx.getSetting({
|
||
|
success: function (res) {
|
||
|
if (res.authSetting['scope.userInfo']) {
|
||
|
wx.getUserInfo({
|
||
|
success: function (res) {
|
||
|
console.log(res.userInfo)
|
||
|
console.log('用户已经授权过');
|
||
|
}
|
||
|
})
|
||
|
} else {
|
||
|
wx.openSetting({
|
||
|
success: (res) => {
|
||
|
wx.authorize({
|
||
|
scope: 'scope.record',
|
||
|
success() {
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
if (e.detail.errMsg == 'getUserInfo:ok') {
|
||
|
//获取成功设置状态
|
||
|
//设置用户信息本地存储
|
||
|
console.log(e.detail.userInfo)
|
||
|
wx.setStorageSync('userInfo', e.detail.userInfo);
|
||
|
var userInfo = e.detail.userInfo;
|
||
|
var nickName = userInfo.nickName;
|
||
|
var avatarUrl = userInfo.avatarUrl;
|
||
|
var gender = userInfo.gender; //性别 0:未知、1:男、2:女
|
||
|
wx.request({
|
||
|
url: app.d.ceshiUrl + '&action=user&m=material',
|
||
|
method: 'post',
|
||
|
data: {
|
||
|
openid: app.globalData.userInfo.openid,
|
||
|
nickName: nickName,
|
||
|
avatarUrl: avatarUrl,
|
||
|
gender: gender
|
||
|
},
|
||
|
header: {
|
||
|
'Content-Type': 'application/x-www-form-urlencoded'
|
||
|
},
|
||
|
success: function (res) {
|
||
|
wx.showToast({
|
||
|
title: res.data.info,
|
||
|
success: 2000
|
||
|
});
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
},
|
||
|
|
||
|
onShow: function () {
|
||
|
|
||
|
},
|
||
|
|
||
|
|
||
|
onHide: function () {
|
||
|
|
||
|
},
|
||
|
|
||
|
|
||
|
clearStorage: function () {
|
||
|
wx.clearStorageSync();
|
||
|
wx.clearStorage();
|
||
|
wx.showToast({
|
||
|
title: '清理成功!',
|
||
|
duration: 2000
|
||
|
});
|
||
|
},
|
||
|
|
||
|
onPullDownRefresh: function () {
|
||
|
|
||
|
},
|
||
|
|
||
|
|
||
|
onReachBottom: function () {
|
||
|
|
||
|
},
|
||
|
|
||
|
|
||
|
update: function () {
|
||
|
wx.getUserInfo({
|
||
|
success: function (res) {
|
||
|
console.log(res)
|
||
|
var userInfo = res.userInfo;
|
||
|
var nickName = userInfo.nickName;
|
||
|
var avatarUrl = userInfo.avatarUrl;
|
||
|
var gender = userInfo.gender; //性别 0:未知、1:男、2:女
|
||
|
wx.request({
|
||
|
url: app.d.ceshiUrl + '&action=user&m=material',
|
||
|
method: 'post',
|
||
|
data: {
|
||
|
openid: app.globalData.userInfo.openid,
|
||
|
nickName: nickName,
|
||
|
avatarUrl: avatarUrl,
|
||
|
gender: gender
|
||
|
},
|
||
|
header: {
|
||
|
'Content-Type': 'application/x-www-form-urlencoded'
|
||
|
},
|
||
|
success: function (res) {
|
||
|
console.log(nickName)
|
||
|
wx.showToast({
|
||
|
title: res.data.info,
|
||
|
success: 2000
|
||
|
});
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
})
|