module.exports = { getUnionId: async () => { // .... return JSON.parse(wx.getStorageSync('userInfo')).unionid || ''; }, getOpenId: async () => { // .... return JSON.parse(wx.getStorageSync('userInfo')).openid || ''; }, };