Files
szjs/pages/my/my.js
2025-03-07 22:27:18 +08:00

243 lines
5.7 KiB
JavaScript

var Token = require('../../utils/util.js');
const app = getApp()
Page({
/**
* 页面的初始数据
*/
data: {
canIUseOpenData: wx.canIUse('open-data.type.userAvatarUrl') && wx.canIUse('open-data.type.userNickName'),
phone: wx.getStorageSync('uid'),
uidFlag: wx.getStorageSync('uidFlag'),
status: '',
code: '',
height: '',
userInfo: null,
isUser: false,
userInfo: {},
hasUserInfo: false,
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
var statusBarHeight = wx.getSystemInfoSync().statusBarHeight;
app.console(statusBarHeight + "=================xxxxxxxxxxxxxxxxxxxxxxxx")
this.setData({
statusBarHeight: statusBarHeight,
height: 46 + statusBarHeight,
});
app.console(this.data.height + "=================xxxxxxxxxxxxxxxxxxxxxxxx")
//调试参数
// wx.setStorageSync('phone', 18133922183);
// wx.setStorageSync('uid', 'adfdffb45a364fc23162f1ebfe9dd66f');
// wx.setStorageSync('token', '797d4q7XT8/PM9bU+T+CNpEpNfsWeVb5j+eXnrRXW0yq+wKXY9fBNSvb7qPiCRMlzZmwG3u1ods8R8Rh3gITxCkyiZGUtLZf');
// wx.setStorageSync('uidFlag', true);
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
this.getLogin()
console.log("code==" + this.data.code)
// if (wx.getStorageSync('phone') != '') {
// this.getUserBaseInfo()
// }
},
// 登录
getLogin() {
var that = this;
wx.login({
success: res => {
console.log(res)
app.globalData.code = res.code
that.setData({
code: res.code
})
wx.getUserInfo({
success: (data) => {
const encryptedData = data.encryptedData;
const iv = data.iv;
app.globalData.encryptedData = encryptedData
app.globalData.iv = iv
// 将code、encryptedData、iv发送到后端接口
console.log("encryptedData==" + app.globalData.encryptedData)
console.log("iv==" + app.globalData.iv)
console.log("wxcode==" + app.globalData.code)
}
})
}
})
},
// 获取电话号码
getPhoneNumber(e) {
// console.log("encryptedData==" + app.globalData.encryptedData)
// console.log("iv==" + app.globalData.iv)
// console.log("wxcode==" + app.globalData.code)
var _this = this;
wx.request({
url: app.globalData.url + 'app/Ghdwechat/wechatLogin',
data: {
code: app.globalData.code,
encryptedData: app.globalData.encryptedData,
iv: app.globalData.iv
},
method: 'POST',
header: {
'content-type': 'application/x-www-form-urlencoded'
},
success(res) {
if (res.data.erro == 0) {
app.globalData.uid = res.data.uid;
wx.setStorageSync('phone', res.data.uid);
wx.setStorageSync('uid', res.data.uid);
wx.setStorageSync('token', res.data.uid);
wx.setStorageSync('uidFlag', true);
_this.setData({
uidFlag: true,
phone: res.data.uid
})
app.globalData.uid = res.data.uid;
wx.switchTab({
url: '/pages/home/home'
})
// _this.getToken()
// _this.ceshi()
wx.showToast({
title: res.data.msg,
icon: 'none'
});
} else {
wx.showToast({
title: res.data.msg,
icon: 'none'
});
}
}
})
},
//上传测试数据
ceshi() {
wx.request({
url: app.buildUrltwo("/member/logintwo"),
header: app.getRequestHeader(),
method: "POST",
data: {
name: wx.getStorageSync('uid'),
phone: wx.getStorageSync('phone'),
storename: wx.getStorageSync('token')
},
success: function (res) {
var resp = res.data;
if (resp.code != 200) {
app.alert({
"content": resp.msg
});
return;
}
// 跳转
wx.navigateBack({});
}
})
},
//获取token
getUserBaseInfo: function () {
var that = this;
//假数据
// if (this.data.resp.erro == 0) {
// that.setData({
// infor: this.data.resp.infor
// });
// }
wx.request({
url: app.globalData.url + '/getUserToken',
header: app.getRequestHeader(),
method: 'GET',
data: {
phonenumber: '18133922183'
},
success: function (res) {
var resp = res.data;
console.log(resp + "=======dddddddddddddddddd")
console.log(resp.erro + "======ddddddddddddddddddd")
if (resp.erro == 0) {
that.setData({
infor: resp.infor
});
}
}
});
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
},
shoucang() {
wx.navigateTo({
url: '/pages/myshoucang/myshoucang_index?' + "type=" + "1",
})
},
pintuan() {
wx.navigateTo({
// url: '/pages/myshoucang/myshoucang_index?'+"type="+"2",
url: '/pages/order/order',
})
},
qianbao() {
wx.navigateTo({
url: '/pages/wodeqianbao/qianbao'
})
},
guanyu() {
wx.navigateTo({
url: '/pages/guanyu/guanyu'
})
},
})