App.vue 1.7 KB

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