微信小店联盟带货小程序

app.js 526B

123456789101112131415161718192021
  1. // app.js
  2. import { handleAppLaunch } from './utils/app-init'
  3. App({
  4. globalData: {
  5. userInfo: null,
  6. hasUserInfo: false,
  7. canIUse: wx.canIUse('button.open-type.getUserInfo'),
  8. canIUseGetUserProfile: false,
  9. canIUseOpenData: wx.canIUse('open-data.type.userAvatarUrl') && wx.canIUse('open-data.type.userNickName')
  10. },
  11. onLaunch(options) {
  12. // 处理启动参数,包括邀请码
  13. handleAppLaunch(options)
  14. if (wx.getUserProfile) {
  15. this.globalData.canIUseGetUserProfile = true
  16. }
  17. }
  18. })