App.vue 3.8 KB

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