App.vue 1.7 KB

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