app.js 2.5 KB

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