app.js 190 B

12345678910111213
  1. // app.js
  2. App({
  3. onLaunch() {
  4. console.log('APP onLaunch');
  5. },
  6. globalData: {
  7. isBindWechat: false,
  8. accessToken: '',
  9. workerId: '',
  10. userName: '',
  11. headImg: ''
  12. }
  13. })