App.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. console.log('aaaaaaaaaaaaaaa');
  13. if (uni.getStorageSync("token")) {
  14. this.HXlogin()
  15. /* if (uni.getStorageSync("company_id") == 0) {
  16. if (getCurrentPages()[0].route != 'pages/login/login') {
  17. uni.reLaunch({
  18. url: "/pages/login/login"
  19. })
  20. }
  21. } else {
  22. index().then(res => {
  23. if (res.code != 1) {
  24. if (getCurrentPages()[0].route != 'pages/login/login') {
  25. uni.reLaunch({
  26. url: "/pages/login/login"
  27. })
  28. }
  29. }
  30. })
  31. } */
  32. } else {
  33. // if (getCurrentPages()[0].route != 'pages/login/login') {
  34. // uni.reLaunch({
  35. // url: "/pages/login/login"
  36. // })
  37. // }
  38. }
  39. }, 800)
  40. },
  41. onShow: function() {
  42. // console.log('App Show')
  43. },
  44. onHide: function() {
  45. // console.log('App Hide')
  46. },
  47. methods: {
  48. HXlogin() {
  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.open({
  53. user: user_no,
  54. pwd: pwd,
  55. appKey: conn.appkey
  56. }).then(() => {
  57. console.log('res');
  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>