App.vue 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <script>
  2. import {
  3. conn
  4. } from "./utils/WebIM";
  5. import {
  6. initEid
  7. } from "./mp_ecard_sdk/main";
  8. // import {
  9. // index
  10. // } from "@/units/inquire.js"
  11. export default {
  12. onLaunch: function() {
  13. initEid();
  14. // console.log('App Launch')
  15. setTimeout(() => {
  16. if (uni.getStorageSync("token")) {
  17. this.HXlogin();
  18. /* if (uni.getStorageSync("company_id") == 0) {
  19. if (getCurrentPages()[0].route != 'pages/login/login') {
  20. uni.reLaunch({
  21. url: "/pages/login/login"
  22. })
  23. }
  24. } else {
  25. index().then(res => {
  26. if (res.code != 1) {
  27. if (getCurrentPages()[0].route != 'pages/login/login') {
  28. uni.reLaunch({
  29. url: "/pages/login/login"
  30. })
  31. }
  32. }
  33. })
  34. } */
  35. } else {
  36. // if (getCurrentPages()[0].route != 'pages/login/login') {
  37. // uni.reLaunch({
  38. // url: "/pages/login/login"
  39. // })
  40. // }
  41. }
  42. }, 800);
  43. },
  44. onShow: function() {
  45. // console.log('App Show')
  46. },
  47. onHide: function() {
  48. // console.log('App Hide')
  49. },
  50. methods: {
  51. HXlogin() {
  52. // logger.enableAll();
  53. if (uni.getStorageSync("user_no") && uni.getStorageSync("pwd")) {
  54. var user_no = uni.getStorageSync("user_no");
  55. var pwd = uni.getStorageSync("pwd");
  56. conn
  57. .open({
  58. user: user_no,
  59. pwd: pwd,
  60. appKey: conn.appkey,
  61. })
  62. .then(() => {
  63. console.log("res");
  64. })
  65. .catch((reason) => {
  66. console.log("失败", reason);
  67. });
  68. }
  69. },
  70. },
  71. };
  72. </script>
  73. <style lang="scss">
  74. page {
  75. background-color: #f4f4f4;
  76. }
  77. .uni-bar {
  78. background-color: #f4f4f4;
  79. }
  80. /*每个页面公共css */
  81. @import "@/uview-ui/index.scss";
  82. </style>