App.vue 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <script>
  2. import { conn } from "./utils/WebIM";
  3. import { initEid } from "./mp_ecard_sdk/main";
  4. // import {
  5. // indexxi
  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. // logger.enableAll();
  49. if (uni.getStorageSync("user_no") && uni.getStorageSync("pwd")) {
  50. var user_no = uni.getStorageSync("user_no");
  51. var pwd = uni.getStorageSync("pwd");
  52. conn
  53. .open({
  54. user: user_no,
  55. pwd: pwd,
  56. appKey: conn.appkey,
  57. })
  58. .then(() => {
  59. console.log("res");
  60. })
  61. .catch((reason) => {
  62. console.log("失败", reason);
  63. });
  64. }
  65. },
  66. },
  67. };
  68. </script>
  69. <style lang="scss">
  70. page {
  71. background-color: #f4f4f4;
  72. }
  73. .uni-bar {
  74. background-color: #f4f4f4;
  75. }
  76. /*每个页面公共css */
  77. @import "@/uview-ui/index.scss";
  78. </style>