//app.js import WxAuthor from './utils/WxAuthor' App({ onLaunch: function() { let self = this; // 登录 new WxAuthor(self) }, globalData: { userId: { openid: '', unionid: '' }, userInfo: null, defaultAddress: null, fcodeErr: '', backLogin: false, arrayTree: [], fromSource: '', channel: '欧耶商城' }, setFromSource(fromSource) { this.globalData.fromSource = fromSource }, checkDefaultAddress(address) { this.globalData.defaultAddress = address }, clearAddress() { this.globalData.defaultAddress = null }, setArrayTree(tree) { this.globalData.arrayTree = tree } })