index.js
2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
//index.js
//获取应用实例
const app = getApp()
Page({
data: {
sessionKey: '',
openid: '',
iv: '',
encryptedData: '',
type:'',
shopid:''
},
onLoad: function (options) {
if(options.type!=undefined){
this.setData({
type:options.type,
shopid:options.id
})
}
},
// 登录
start(e) {
console.log(e)
console.log(434348389)
let that = this;
that.setData({
iv: e.detail.iv,
encryptedData: e.detail.encryptedData
})
console.log(this.data.iv);
console.log(this.data.encryptedData)
wx.getSetting({
success(res) {
console.log("res", res)
if (res.authSetting['scope.userInfo']) {
console.log(348438)
wx.login({
success: (res) => {
console.log(res)
var url = 'user/getSessionKey';
var params = {
code: res.code,
}
app.post(url, params).then((res) => {
console.log(res);
console.log(435485, res.session_key)
that.setData({
sessionKey: res.session_key,
openid: res.openid
})
wx.setStorageSync("sessionKey", res.session_key)
wx.setStorageSync("openid", res.openid)
that.login()
}).catch((err) => {
})
}
});
} else {
console.log("未授权=====")
// wx.switchTab({
// url: '/pages/homepage/homepage',
// })
}
}
})
},
login() {
let that = this;
console.log(378784)
let url = 'user/login';
let params = {
session_key: that.data.sessionKey,
iv: that.data.iv,
encrypted_data: that.data.encryptedData,
openid: that.data.openid
}
app.post(url, params, 'post').then((res) => {
console.log(res)
wx.setStorageSync('token', res.token);
if(that.data.type==1){
wx.navigateTo({
url: '/pages/shopdetail/shopdetail?id='+that.data.shopid,
})
}else{
wx.switchTab({
url: '/pages/homepage/homepage',
})
}
}).catch((errMsg) => {
console.log(errMsg)
})
}
})