1 Star 0 Fork 1

a24568744/empsunJKJC

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 3.50 KB
一键复制 编辑 原始数据 按行查看 历史
a24568744 提交于 2020-09-22 11:46 . 更新首页
//app.js
App({
onLaunch: function () {
// 展示本地存储能力
var logs = wx.getStorageSync('logs') || []
logs.unshift(Date.now())
wx.setStorageSync('logs', logs)
// 登录
wx.login({
success: res => {
// 发送 res.code 到后台换取 openId, sessionKey, unionId
}
})
// 获取用户信息
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)
}
}
})
}
}
})
},
onShow(options) {
wx.setKeepScreenOn({
keepScreenOn: true
})
},
globalData: {
isA: true,
// showModelNum: 1,
// userInfo: {
// avatarUrl: '/img/wx_login.png',
// nickName: '请登录'
// },
// num: 0,
// dataerrnum:0,
head: {
openid: '',
token: 'SSS',
noToken: true
},
// tokenkey: 'token',
// bindTime:0,
equ: {
name: '',
deviceId: '',
mac: ''
},
equs: [],//设备列表
equconn0: false, //全局的设备连接状态
services: [], // 连接设备的服务
ewBluetooth: { //额温设备蓝牙服务信息
deviceId: '', //已连接设备uuid
serviceUuid: '', //额温服务uuid
characteristics: [{ // 设备特征值列表
uuid: '', //服务特征值uuid
properties: {
read: false, //该特征值是否支持 read 操作
write: false, //该特征值是否支持 write 操作
notify: false, //该特征值是否支持 notify 操作
indicate: false, //该特征值是否支持 indicate 操作
}
}]
},
// usersIndex: 0,
users: [{
avatarUrl: "",
birthday: null,
cTime: "2020-04-15 16:01:06",
gender: null,
height: null,
isMaster: 1,
nickName: "点击登录",
uTime: "2020-04-15 16:01:07",
userWxId: 6,
weight: null,
wxInfoId: 4,
},
],
// userdatas:[],
//
// wxRemind: {},
//====audio
audio: {
connsucc: '',
connfail: '',
speedlt: '',
speedeq: '',
speedgt: '',
open: false,//语音开关
},
hrb: {
rest_heart: 75,
max_heart: 195,
d5: 0,
d6: 0,
d7: 0,
d8: 0,
d9: 0,
},
aim: {
aim_min: 125,
aim_max: 140,
}
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/a24568744/empsunJKJC.git
git@gitee.com:a24568744/empsunJKJC.git
a24568744
empsunJKJC
empsunJKJC
master

搜索帮助