app.js 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. import {
  2. ApiModel
  3. } from './utils/Api';
  4. App({
  5. onLaunch(options) {
  6. //小程序跳转进入
  7. if (options.query.userMsg) {
  8. wx.setStorageSync('userMsg', JSON.parse(options.query.userMsg))
  9. wx.setStorageSync('auth', JSON.parse(options.query.auth))
  10. //获取用户权限
  11. this.globalData.http.basic({
  12. "classname": "sysmanage.develop.userauth.userauth",
  13. "method": "query_userauth",
  14. content: {
  15. nocache: true
  16. }
  17. }).then(res => {
  18. console.log("跳转进入查询权限", res)
  19. if (res.msg != '成功') return wx.showToast({
  20. title: '权限查询失败,请稍后再试',
  21. icon: "none"
  22. })
  23. wx.setStorageSync('userauth', res.data);
  24. });
  25. // 查询站点数据
  26. this.globalData.http.basic({
  27. "classname": "webmanage.site.site",
  28. "method": "querySite_Parameter",
  29. "content": {}
  30. }).then(res => {
  31. console.log("跳转进入查询站点数据", res)
  32. if (res.msg != '成功') return wx.showToast({
  33. title: res.msg,
  34. icon: "none"
  35. });
  36. wx.setStorageSync('siteP', res.data);
  37. });
  38. console.log('跳转进入', wx.getStorageSync('userMsg'))
  39. console.log('跳转进入', wx.getStorageSync('auth'))
  40. }
  41. },
  42. initSocket() {
  43. let that = this;
  44. this.globalData.SocketTask = wx.connectSocket({
  45. url: 'wss://meida.cnyunl.com/yos/webSocket/' + wx.getStorageSync('userMsg').token,
  46. complete: (res) => {
  47. console.log(res)
  48. }
  49. })
  50. this.globalData.SocketTask.onOpen(function (res) {
  51. that.globalData.socketEstablish = true;
  52. })
  53. this.globalData.SocketTask.onMessage(function (res) {
  54. that.globalData.socket.callback(res)
  55. })
  56. this.globalData.SocketTask.onError(function (res) {
  57. that.globalData.socketEstablish = false;
  58. })
  59. this.globalData.SocketTask.onClose(function (res) {
  60. that.globalData.socketEstablish = false;
  61. })
  62. },
  63. globalData: {
  64. http: new ApiModel(), //接口文件
  65. queryPer: require("./utils/queryPermissions"), //权限查询
  66. handleSelect: null, //处理选择结果 函数
  67. socketEstablish: false, //是否已经建立socket
  68. SocketTask: '', // Socket方法
  69. socket: { // Socket回调
  70. that: null, //保存this
  71. callback: function () {}
  72. },
  73. }
  74. })