App.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  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. setTimeout(() => {
  11. if (uni.getStorageSync("token")) {
  12. this.HXlogin()
  13. /* if (uni.getStorageSync("company_id") == 0) {
  14. if (getCurrentPages()[0].route != 'pages/login/login') {
  15. uni.reLaunch({
  16. url: "/pages/login/login"
  17. })
  18. }
  19. } else {
  20. index().then(res => {
  21. if (res.code != 1) {
  22. if (getCurrentPages()[0].route != 'pages/login/login') {
  23. uni.reLaunch({
  24. url: "/pages/login/login"
  25. })
  26. }
  27. }
  28. })
  29. } */
  30. } else {
  31. // if (getCurrentPages()[0].route != 'pages/login/login') {
  32. // uni.reLaunch({
  33. // url: "/pages/login/login"
  34. // })
  35. // }
  36. }
  37. }, 800)
  38. },
  39. onShow: function() {
  40. },
  41. onHide: function() {
  42. },
  43. methods: {
  44. HXlogin() {
  45. if (uni.getStorageSync('user_no') && uni.getStorageSync('pwd')) {
  46. var user_no = uni.getStorageSync('user_no')
  47. var pwd = uni.getStorageSync('pwd')
  48. conn.open({
  49. user: user_no,
  50. pwd: pwd,
  51. appKey: conn.appkey
  52. }).then(() => {
  53. console.log('res');
  54. }).catch(reason => {
  55. console.log('失败', reason);
  56. })
  57. }
  58. }
  59. }
  60. }
  61. </script>
  62. <style lang="scss">
  63. /*每个页面公共css */
  64. * {
  65. margin: 0;
  66. padding: 0;
  67. }
  68. @import "uview-ui/index.scss";
  69. .u-font-xs {
  70. font-size: 22rpx;
  71. }
  72. .u-font-sm {
  73. font-size: 26rpx;
  74. }
  75. .u-font-md {
  76. font-size: 28rpx;
  77. }
  78. .u-font-lg {
  79. font-size: 30rpx;
  80. }
  81. .u-font-xl {
  82. font-size: 34rpx;
  83. }
  84. .u-flex {
  85. /* #ifndef APP-NVUE */
  86. display: flex;
  87. /* #endif */
  88. flex-direction: row;
  89. align-items: center;
  90. }
  91. .u-flex-wrap {
  92. flex-wrap: wrap;
  93. }
  94. .u-flex-nowrap {
  95. flex-wrap: nowrap;
  96. }
  97. .u-col-center {
  98. align-items: center;
  99. }
  100. .u-col-top {
  101. align-items: flex-start;
  102. }
  103. .u-col-bottom {
  104. align-items: flex-end;
  105. }
  106. .u-row-center {
  107. justify-content: center;
  108. }
  109. .safe-area-inset-bottom {
  110. padding-bottom: 0;
  111. padding-bottom: constant(safe-area-inset-bottom);
  112. padding-bottom: env(safe-area-inset-bottom);
  113. }
  114. .u-row-left {
  115. justify-content: flex-start;
  116. }
  117. .u-row-right {
  118. justify-content: flex-end;
  119. }
  120. .u-row-between {
  121. justify-content: space-between;
  122. }
  123. .u-row-around {
  124. justify-content: space-around;
  125. }
  126. .u-text-left {
  127. text-align: left;
  128. }
  129. .u-text-center {
  130. text-align: center;
  131. }
  132. .u-text-right {
  133. text-align: right;
  134. }
  135. .u-flex-col {
  136. /* #ifndef APP-NVUE */
  137. display: flex;
  138. /* #endif */
  139. flex-direction: column;
  140. }
  141. .u-flex-1 {
  142. flex: 1
  143. }
  144. .web_box {
  145. width: 100%;
  146. background: #F3F3F3;
  147. box-sizing: border-box;
  148. min-height: 100vh;
  149. // overflow: auto;
  150. position: relative;
  151. }
  152. .hflex {
  153. display: flex;
  154. flex-direction: row;
  155. flex-wrap: nowrap;
  156. }
  157. .vflex {
  158. display: flex;
  159. flex-direction: column;
  160. flex-wrap: nowrap;
  161. }
  162. .jbetween {
  163. justify-content: space-between;
  164. }
  165. .jaround {
  166. justify-content: space-around;
  167. }
  168. .jend {
  169. justify-content: flex-end;
  170. }
  171. .jcenter {
  172. justify-content: center;
  173. }
  174. .acenter {
  175. align-items: center;
  176. }
  177. .abetween {
  178. align-content: space-between;
  179. }
  180. .aaround {
  181. align-content: space-around;
  182. }
  183. .astart {
  184. align-items: flex-start !important;
  185. }
  186. .aend {
  187. align-items: flex-end;
  188. }
  189. .fwrap {
  190. flex-wrap: wrap;
  191. }
  192. .text_hide {
  193. overflow: hidden;
  194. white-space: nowrap;
  195. text-overflow: ellipsis;
  196. }
  197. .text_hide3 {
  198. text-overflow: -o-ellipsis-lastline;
  199. overflow: hidden;
  200. text-overflow: ellipsis;
  201. display: -webkit-box;
  202. -webkit-line-clamp: 3;
  203. line-clamp: 3;
  204. -webkit-box-orient: vertical;
  205. }
  206. .text_hide2 {
  207. text-overflow: -o-ellipsis-lastline;
  208. overflow: hidden;
  209. text-overflow: ellipsis;
  210. display: -webkit-box;
  211. -webkit-line-clamp: 2;
  212. line-clamp: 2;
  213. -webkit-box-orient: vertical;
  214. }
  215. .no_wrap {
  216. white-space: nowrap;
  217. }
  218. </style>