App.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <script>
  2. import {
  3. conn
  4. } from './utils/WebIM';
  5. // import {
  6. // index
  7. // } from "@/units/inquire.js"
  8. export default {
  9. onLaunch: function() {
  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.open({
  52. user: user_no,
  53. pwd: pwd,
  54. appKey: conn.appkey
  55. }).then(() => {
  56. console.log('res');
  57. }).catch(reason => {
  58. console.log('失败', reason);
  59. })
  60. }
  61. }
  62. }
  63. };
  64. </script>
  65. <style lang="scss">
  66. page {
  67. background-color: #f4f4f4;
  68. }
  69. .uni-bar {
  70. background-color: #f4f4f4;
  71. }
  72. /*每个页面公共css */
  73. @import "@/uview-ui/index.scss";
  74. </style>