78 Star 1.3K Fork 355

landalf / 校园综合服务平台-微信小程序

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
app.js 863 Bytes
一键复制 编辑 原始数据 按行查看 历史
Baixiao 提交于 2023-01-29 08:06 . update README.md.
let com = require('./utils/util.js')
App({
com: com,
onLaunch: function () {
let _this = this
},
login(cb){
wx.login({
success(res) {
com.post('wx/user/login', { js_code: res.code }, function (res) {
if (res.code == 1) {
wx.setStorageSync("user", res.data)
wx.setStorageSync("token", res.token)
cb(res)
}
})
}
})
},
//获取默认地址
getMoren(id){
if(id){
com.post('user/address/get/id', { id: id }, function (res) {
if (res.code == 1) {
wx.setStorageSync("address", res.data)
}
})
}
},
getRes(id){
com.post('wx/user/get/info/wxid', { wx_id: id }, function (res) {
if (res.code == 1) {
wx.setStorageSync("res", res.data)
}
})
},
globalData: {
userInfo: null
}
})
JavaScript
1
https://gitee.com/yaozy717/hbhzdtn.git
git@gitee.com:yaozy717/hbhzdtn.git
yaozy717
hbhzdtn
校园综合服务平台-微信小程序
master

搜索帮助