1 Star 0 Fork 0

KID/在职研小程序

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 2.26 KB
一键复制 编辑 原始数据 按行查看 历史
Jrongxin 提交于 2018-07-30 15:41 . new Small program
//app.js
const { SERVICETEL } = require('config/index.js');
const Towxml = require('/assert/towxml/main.js'); // wowxml把HTML转换为wxml
const { getUserSession, wxUserInfo, wxUserPhone } = require('/utils/user.js');
App({
onLaunch: function () {
let self = this
// 获取用户信息
// wx.getSetting({
// success: (res) => {
// if (!res.authSetting['scope.userInfo']){ // 跳转授权页
// wx.reLaunch({
// url: '/pages/auth-page/auth-page',
// })
// }
// }
// })
},
wxAuth(withCredentials) { // 获取微信授权信息,withCredentials:是否解密用户信息
let self = this;
wx.getUserInfo({ // 身份认证接口写好后,替换为身份认证的api
withCredentials: withCredentials,
success: (res) => {
self.globalData.userInfo = { ...self.globalData.userInfo, ...res.userInfo }
try {
let yude_openid = wx.getStorageSync('yude_openid'); // 获取本地保存的yude_openid
if (yude_openid){
if (withCredentials) {
wxUserInfo({
encryptedData: res.encryptedData,
iv: res.iv
}).then((res) => {
self.globalData.userInfo = { ...self.globalData.userInfo, ...res }
})
} else {
getUserSession();
}
} else {
getUserSession();
}
} catch (err) {
console.log(err)
}
},
fail: (res) => { // 用户拒绝授权
console.log(res)
}
})
},
wxPhone(params, withCredentials) { // 获取微信授权信息,withCredentials:是否解密用户信息
let self = this;
let yude_openid = wx.getStorageSync('yude_openid'); // 获取本地保存的yude_openid
if (withCredentials) {
wxUserPhone({
encryptedData: params.encryptedData,
iv: params.iv
}).then((res) => {
self.globalData.userInfo = { ...self.globalData.userInfo, ...res }
})
} else {
getUserSession();
self.globalData.isuser = false;
}
},
makePhoneCall: function () {
wx.makePhoneCall({
phoneNumber: SERVICETEL, //仅为示例,并非真实的电话号码
success: function (e) {
console.log(e)
},
fail: function () {
console.log('无此电话')
}
})
},
towxml: new Towxml(), // 添加为全局的对象,这样每个页面都可以用到
// globalData: {
// userInfo: null
// },
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/KID0323/onthejob_research_program.git
[email protected]:KID0323/onthejob_research_program.git
KID0323
onthejob_research_program
在职研小程序
master

搜索帮助