app.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. import util from './utils/util.js';
  2. import { HTTP_REQUEST_URL } from './config.js';
  3. import Server from './utils/Server.js';
  4. App({
  5. onLaunch: function (option) {
  6. if (HTTP_REQUEST_URL==''){
  7. console.error("请配置根目录下的config.js文件中的 'HTTP_REQUEST_URL'\n\n请修改开发者工具中【详情】->【AppID】改为自己的Appid\n\n请前往后台【小程序】->【小程序配置】填写自己的 appId and AppSecret");
  8. return false;
  9. }
  10. var that = this;
  11. if (option.query.hasOwnProperty('scene')){
  12. switch (option.scene) {
  13. //扫描小程序码
  14. case 1047:
  15. that.globalData.code = option.query.scene;
  16. break;
  17. //长按图片识别小程序码
  18. case 1048:
  19. that.globalData.code = option.query.scene;
  20. break;
  21. //手机相册选取小程序码
  22. case 1049:
  23. that.globalData.code = option.query.scene;
  24. break;
  25. //直接进入小程序
  26. case 1001:
  27. that.globalData.spid = option.query.scene;
  28. break;
  29. }
  30. }
  31. // 获取导航高度;
  32. wx.getSystemInfo({
  33. success: res => {
  34. //导航高度
  35. this.globalData.navHeight = res.statusBarHeight * (750 / res.windowWidth) + 97;
  36. }, fail(err) {}
  37. });
  38. const updateManager = wx.getUpdateManager();
  39. updateManager.onCheckForUpdate(function (res) {
  40. // 请求完新版本信息的回调
  41. })
  42. updateManager.onUpdateReady(function () {
  43. wx.showModal({
  44. title: '更新提示',
  45. content: '新版本已经准备好,是否重启应用?',
  46. success: function (res) {
  47. if (res.confirm) {
  48. // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启
  49. updateManager.applyUpdate()
  50. }
  51. }
  52. })
  53. });
  54. updateManager.onUpdateFailed(function () {
  55. return that.Tips({title:'新版本下载失败'});
  56. })
  57. //实例化聊天服务
  58. this.$chat = new Server(this);
  59. },
  60. $chat:null,
  61. globalData: {
  62. navHeight: 0,
  63. routineStyle: '#ffffff',
  64. openPages: '',
  65. spid: 0,
  66. code:0,
  67. urlImages: '',
  68. url: HTTP_REQUEST_URL,
  69. token: '',
  70. isLog:false,
  71. expiresTime:0,
  72. MyMenus:[],
  73. userInfo:{},
  74. loginType:'h5'
  75. },
  76. /**
  77. * 聊天事件快捷注册
  78. *
  79. */
  80. $on: function (name, action){
  81. this.$chat.$on(name,action);
  82. },
  83. /*
  84. * 信息提示 + 跳转
  85. * @param object opt {title:'提示语',icon:''} | url
  86. * @param object to_url 跳转url 有5种跳转方式 {tab:1-5,url:跳转地址}
  87. */
  88. Tips: function (opt, to_url) {
  89. return util.Tips(opt, to_url);
  90. },
  91. /**
  92. * 快捷调取助手函数
  93. */
  94. help:function()
  95. {
  96. return util.$h;
  97. },
  98. /*
  99. * 合并数组
  100. * @param array list 请求返回数据
  101. * @param array sp 原始数组
  102. * @return array
  103. */
  104. SplitArray: function (list, sp) { return util.SplitArray(list, sp)},
  105. })