作者 wumengyu

优化登录出现参数错误问题

... ... @@ -116,7 +116,7 @@ Page({
};
app.post(url, params, header).then((res) => {
// console.log('打卡结果', res);
if (res.is_success) {
if (+res.is_success) {
this.setData({
punchState: false,
'state_data.is_showSuccessModal': true,
... ...
... ... @@ -13,6 +13,14 @@ Page({
// 获取用户信息
start(e) {
let self = this;
// console.log(self.data.openid === '', self.data.session_key === '');
if(self.data.openid === '' || self.data.session_key === '') {
wx.showLoading({title: '请稍候', mask: true});
self.login();
setTimeout(function () {
wx.hideLoading()
}, 1000);
}else {
wx.checkSession({
success: function () {
console.log('未过期');
... ... @@ -43,6 +51,7 @@ Page({
self.login() //重新登录
}
})
}
},
login() {
let self = this;
... ...