加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
Szh 提交于 2023-12-01 17:44 . 更新
// app.js
const req = require("./utils/request");
App({
onLaunch() {
// 获取系统信息
const systemInfo = wx.getSystemInfoSync();
// 胶囊按钮位置信息
const menuButtonInfo = wx.getMenuButtonBoundingClientRect();
// 导航栏高度 = 状态栏高度 + 44
this.globalData.navBarHeight = systemInfo.statusBarHeight + 44;
// this.globalData.dHeigth = systemInfo.statusBarHeight
// this.globalData.menuRight = systemInfo.screenWidth - menuButtonInfo.right;
this.globalData.menuTop = menuButtonInfo.top;
// this.globalData.menuHeight = menuButtonInfo.height;
// 登录
wx.login({
success: res => {
// 发送 res.code 到后台换取 openId, sessionKey, unionId
}
})
},
//获取
getCheck() {
return new Promise(function (resolve, reject) {
// 登录
wx.login({
success: ret => {
req.GP('api/cust_login/reg_check', {
code: ret.code,
}).then(res => {
resolve(res.data)
wx.setStorageSync('c_token', res.data.token);
})
},
fail: ret => {
resolve(null)
},
})
})
},
globalData: {
userInfo: null,
// 存取地址
address: null,
// 优惠券
Coupon: null,
// 查询订单
skulist: null,
menuTop:null
}
})
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化