app.js 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. //app.js
  2. let wechat = require('./utils/wechat.js');
  3. let log = require('./utils/log.js');
  4. App({
  5. globalData: {
  6. postHeadAgreement: 'https://cdglyy.pjnes.com/cloud/chargapi',
  7. helpPhoneNum: '18211188302',
  8. version:'2.0'
  9. },
  10. onLaunch() {
  11. log.info('[全局]', '[小程序加载完成]');
  12. // log.error({ str: 'hello world22' }, 'warn log', 100, [1, 2, 3]);
  13. // log.warn({ str: 'hello world33' }, 'warn log', 100, [1, 2, 3]);
  14. // log.setFilterMsg('filterkeyword');
  15. // log.setFilterMsg('addfilterkeyword');
  16. // wx.showModal({
  17. // title: '温馨提示',
  18. // content: '为方便您更好的使用派捷充电小程序,平台将定期(暂定每周一次)对未支付订单进行自动支付。望周知',
  19. // showCancel:false
  20. // });
  21. // wx.showToast({
  22. // title: '当前网络环境较差,无法连接服务器,请稍后重试。有问题请联系客服电话18211188302,接听时段08:00-17:00。',
  23. // icon: 'none',
  24. // duration:2000
  25. // });
  26. //this.showNetworkError();
  27. },
  28. showNetworkError(){
  29. wx.showModal({
  30. title: '温馨提示',
  31. content: '当前网络环境较差,无法连接服务器,请稍后重试。有问题请联系客服电话18211188302,接听时段08:00-17:00。',
  32. showCancel: false
  33. });
  34. },
  35. onShow() {
  36. let userInfo = wx.getStorageSync('userInfo');
  37. let isLogin = wx.getStorageSync('isLogin');
  38. // 页面显示
  39. if (userInfo && isLogin) {
  40. if ((!userInfo.userId && userInfo.userId != 0)) {
  41. log.info('[全局]', '[已登陆未有用户ID跳转登录界面]');
  42. let url = `/pages/login/login`;
  43. wx.navigateTo({
  44. url
  45. });
  46. return;
  47. }
  48. }
  49. }
  50. // "tabBar": {
  51. // "color": "#a9b7b7",
  52. // "selectedColor": "#11cd6e",
  53. // "borderStyle": "black",
  54. // "list": [
  55. // {
  56. // "selectedIconPath": "images/index.png",
  57. // "iconPath": "images/index.png",
  58. // "pagePath": "pages/index/index",
  59. // "text": "首页"
  60. // },
  61. // {
  62. // "selectedIconPath": "images/ucenter.png",
  63. // "iconPath": "images/ucenter.png",
  64. // "pagePath": "pages/ucenter/index/index",
  65. // "text": "我的"
  66. // }
  67. // ]
  68. // },
  69. })