1 Star 0 Fork 2

听风呢喃/invoice-query

forked from liu993083028/invoice-query 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 2.47 KB
一键复制 编辑 原始数据 按行查看 历史
liu993083028 提交于 2019-01-28 20:15 . jie kou tiao shi
//app.js
import 'miniprogram_npm/_weapp-cookie@1.2.9@weapp-cookie/index'
const api = require('./utils/request.js')
App({
onLaunch: function () {
var that = this;
// 展示本地存储能力
var logs = wx.getStorageSync('logs') || []
logs.unshift(Date.now())
wx.setStorageSync('logs', logs)
// wx.getSetting({
// success: res => {
// if (res.authSetting['scope.userInfo']) {
// // 已经授权,可以直接调用 getUserInfo 获取头像昵称,不会弹框
// wx.getUserInfo({
// success: res => {
// // 可以将 res 发送给后台解码出 unionId
// this.globalData.userInfo = res.userInfo
// // 登录
// // 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
// // 所以此处加入 callback 以防止这种情况
// if (this.userInfoReadyCallback) {
// this.userInfoReadyCallback(res)
// }
// }
// })
// }
// }
// })
wx.login({
success: res => {
// 发送 res.code 到后台换取 openId, sessionKey, unionId
wx.request({
url: "https://api.weixin.qq.com/sns/jscode2session",
data: {
appid: 'wxebb09397323ee44b', // 设置微信的appid
secret: '7dbb6bf381fde4796796ea0d23fdf204',
js_code: res.code,
grant_type: 'authorization_code'
},
success: (res) => {
this.globalData.userInfo = { openId: res.data.openid }
console.log("data---" + res.data.openid)
}
})
}
})
/**
* 监听网络状态变化
* 可根据业务需求进行调整
*/
wx.onNetworkStatusChange(function (res) {
if (!res.isConnected) {
that.globalData.isConnected = false
wx.showToast({
title: '网络已断开',
icon: 'loading',
duration: 2000,
complete: function () {
that.goStartIndexPage()
}
})
} else {
that.globalData.isConnected = true
wx.hideToast()
}
});
},
goLoginPageTimeOut: function () {
if (this.navigateToLogin) {
return
}
this.navigateToLogin = true
setTimeout(function () {
wx.navigateTo({
url: "/pages/authorize/index"
})
}, 1000)
},
globalData: {
userInfo: null,
chcToken:null,
isConnected: true
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
微信
1
https://gitee.com/psx/invoice-query.git
git@gitee.com:psx/invoice-query.git
psx
invoice-query
invoice-query
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385