You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.6 KiB
68 lines
1.6 KiB
//获取应用实例
|
|
const app = getApp()
|
|
|
|
|
|
Page({
|
|
data: {
|
|
showImg:'../../images/two_code.jpg'
|
|
},
|
|
onLoad: function (options) {
|
|
if (app.globalData.userInfo) {
|
|
this.setData({
|
|
userInfo: app.globalData.userInfo,
|
|
hasUserInfo: true
|
|
})
|
|
} else if (this.data.canIUse) {
|
|
// 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
|
|
// 所以此处加入 callback 以防止这种情况
|
|
app.userInfoReadyCallback = res => {
|
|
this.setData({
|
|
userInfo: res.userInfo,
|
|
hasUserInfo: true
|
|
})
|
|
}
|
|
} else {
|
|
// 在没有 open-type=getUserInfo 版本的兼容处理
|
|
wx.getUserInfo({
|
|
success: res => {
|
|
app.globalData.userInfo = res.userInfo
|
|
this.setData({
|
|
userInfo: res.userInfo,
|
|
hasUserInfo: true
|
|
})
|
|
}
|
|
})
|
|
}
|
|
},
|
|
// goUrl: function (e) {
|
|
// wx.navigateTo({
|
|
// url: '../out/out'
|
|
// })
|
|
// },
|
|
click: function () {
|
|
var that = this;
|
|
var show;
|
|
wx.scanCode({
|
|
success: (res) => {
|
|
this.show = "--result:" + res.result + "--scanType:" + res.scanType + "--charSet:" + res.charSet + "--path:" + res.path;
|
|
that.setData({
|
|
show: this.show
|
|
})
|
|
wx.showToast({
|
|
title: '成功',
|
|
icon: 'success',
|
|
duration: 2000
|
|
})
|
|
},
|
|
fail: (res) => {
|
|
wx.showToast({
|
|
title: '失败',
|
|
icon: 'success',
|
|
duration: 2000
|
|
})
|
|
},
|
|
complete: (res) => {
|
|
}
|
|
})
|
|
}
|
|
})
|