1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- const util = require('./utils/util.js')
- App({
- onLaunch: function () {
- wx.setStorageSync('openId', '')
-
- var logs = wx.getStorageSync('logs') || []
- logs.unshift(Date.now())
- wx.setStorageSync('logs', logs)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- wx.getSetting({
- success: res => {
- if (res.authSetting['scope.userInfo']) {
-
- wx.getUserInfo({
- success: res => {
- this.globalData.userInfo = res.userInfo;
-
-
- if (this.userInfoReadyCallback) {
- this.userInfoReadyCallback(res)
- }
- }
- })
- } else {
- console.log('未获取用户信息 ... ')
- }
- }
- })
-
-
-
-
-
-
- },
- globalData: {
- userInfo: null,
- openId: '',
- imageUrl: 'https://app.schoolwisdoms.com/static/wx/images/',
- orgTitle: '艾克斯朗学生端',
- appId: 'wx5e6122b0a733ad22',
- }
- })
|