业务交流通
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

app.js 618B

12345678910111213141516171819202122232425262728
  1. // app.js
  2. App({
  3. onLaunch() {
  4. // 展示本地存储能力
  5. const logs = wx.getStorageSync('logs') || []
  6. logs.unshift(Date.now())
  7. wx.setStorageSync('logs', logs)
  8. // 登录
  9. wx.login({
  10. success: res => {
  11. // 发送 res.code 到后台换取 openId, sessionKey, unionId
  12. }
  13. })
  14. },
  15. globalData: {
  16. userInfo: null,
  17. openid: "",
  18. appid: "",
  19. sessionKey: "",
  20. suiteCode: "",
  21. customerId: "",
  22. },
  23. // mangerUrl: 'http://test2.hhrchina.com',
  24. mangerUrl: "http://192.168.18.156",
  25. // mangerUrl: "https://www.hhrchina.com",
  26. // mangerUrlPath: "https://www.hhrchina.com",
  27. })