程式碼拉取完成,頁面將自動刷新
同步操作將從 汕尾市大树网络科技有限公司/租车小程序前端 強制同步,此操作會覆蓋自 fork 倉庫以來所做的任何修改,且無法恢復!!!
確定後同步將在後臺操作,完成時將刷新頁面,請耐心等待。
var aldstat=require("./utils/ald-stat.js");
//app.js
App({
onLaunch: function () {
var that = this;
wx.login({
success: function (res) {
if (res.code) {
var url = that.globalData.siteRoot + "/Mpa/Weixinopen/OnLogin";
//发起网络请求;
//发起网络请求
wx.request({
url: url,
method:"POST",
data: {
code: res.code
},
success: function (json) {
console.log(json);
if(json.statusCode!=200){
console.log("请求出错");
that.aldstat.sendEvent('请求出错',{
"url":url,
"message":json
});
return;
}
var result = json.data.result;
if (result.success) {
wx.setStorageSync('sessionId', result.sessionId);
console.log('sessionId=>', wx.getStorageSync('sessionId'));
console.log('userId=>',result.userId);
//有userId,就可以获取用户信息
if(result.userId){
url = that.globalData.siteRoot + "/api/services/app/weixinUser/GetWeixinUserByIdToMiniAsync";
wx.request({
url:url,
method:"POST",
data:{
id:result.userId
},
success:function(json){
console.log("用户信息=>",json);
if (json.statusCode != 200) {
console.log("请求出错");
that.aldstat.sendEvent('请求出错', {
"url": url,
"message": json
});
return;
}
that.globalData.userInfo=json.data.result;
}
})
}
}
}
})
} else {
console.log('登录失败!' + res.errMsg)
}
}
});
},
getUserInfo: function (cb) {
var that = this
if (this.globalData.userInfo) {
typeof cb == 'function' && cb(this.globalData.userInfo)
} else {
//调用登录接口
wx.login({
success: function () {
wx.getUserInfo({
success: function (res) {
that.globalData.userInfo = res.userInfo
typeof cb == 'function' && cb(that.globalData.userInfo)
}
})
}
})
}
},
globalData: {
userInfo: null,
//siteRoot:"https://das.mynatapp.cc",
siteRoot: "https://zuche.shensigzs.com",
//pickerDateObj: null,//取车信息
//returnDateObj: null,//还车信息
//pickerTimeObj: null,//取车信息
//returnTimeObj: null,//还车信息
day: null,
//pickUpStore: null,
//returnStore: null,
phoneNumber:null,
pickUpCar:null,//以后都使用这个
returnCar:null//以后都使用这个
}
})
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。