|
@@ -10,6 +10,8 @@ Page({
|
|
|
|
|
|
defaultType3: true,
|
|
|
passwordType3: true,
|
|
|
+
|
|
|
+ info:{},
|
|
|
},
|
|
|
eyeStatus1() {
|
|
|
if (this.data.defaultType1) {
|
|
@@ -73,7 +75,19 @@ Page({
|
|
|
// })
|
|
|
},
|
|
|
onLoad: function () {
|
|
|
-
|
|
|
+ wx.request({
|
|
|
+ url: app.globalData.publicUrl + '/sys/login/session',
|
|
|
+ method: "GET",
|
|
|
+ header: {
|
|
|
+ appletsId: wx.getStorageSync('openId')
|
|
|
+ },
|
|
|
+ success: (res) => {
|
|
|
+ console.log(res,"000");
|
|
|
+ this.setData({
|
|
|
+ info:res.data.data
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
|
|
|
},
|
|
|
})
|