代码拉取完成,页面将自动刷新
同步操作将从 Path/小程序外卖 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/**
* 1. 引入store
*/
const Store = require('utils/store.js');
/**
* 2. 实例化一个Store,且允许初始化一个全局状态
*/
let store = new Store({
orders:[],
userInfo: null,
setUserInfo:{
radioItems: [
{ name: '男', value: '0', checked: true },
{ name: '女', value: '1' },
{ name: '保密', value: '2'}
],
date: '1995-01-01',
time: "12:12",
countryCodeIndex: 0,
countryIndex: 0,
accountIndex:0,
isAgree: false,
nickName: '大帅逼',
QQ: 21492230,
phoneNum: 15125846567,
SOSPhone: 18172656498,
PayNum: 235649795
}
})
App({
onLaunch: function () {
//登录
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.store.$state.userInfo = res.userInfo
this.store.$state.setUserInfo.nickName = res.userInfo.nickName
// 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
// 所以此处加入 callback 以防止这种情况
if (this.userInfoReadyCallback) {
this.userInfoReadyCallback(res)
}
}
})
}
}
})
},
/**
* 3.Introduction to app
*/
store: store
})
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。