App.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <script>
  2. const NET = require('@/utils/request')
  3. const API = require('@/config/api')
  4. export default {
  5. onLaunch: function() {
  6. console.log('App Launch1')
  7. // uni.setStorage({
  8. // key: 'token',
  9. // data: '5a4b36295826f056ab445674f01c47fc'
  10. // })
  11. // uni.setStorage({
  12. // key: 'userId',
  13. // data: '2053085'
  14. // })
  15. // uni.setStorage({
  16. // key: 'token',
  17. // data: 'ddd64884836d585dcf6a3897deddb893'
  18. // })
  19. pluginsReady(function() {
  20. EbeiPlugins.getLocalUserInfo(function(userInfo) {
  21. uni.setStorage({
  22. key: 'token',
  23. data: userInfo.token
  24. })
  25. // uni.setStorage({
  26. // key: 'token',
  27. // data: '4abdbc073a14665058dace2e0d3bab60'
  28. // })
  29. uni.setStorage({
  30. key: 'userId',
  31. data: userInfo.userid
  32. })
  33. uni.setStorage({
  34. key: 'userName',
  35. data: userInfo.userName
  36. })
  37. uni.setStorage({
  38. key: 'companyId',
  39. data: userInfo.companyId
  40. })
  41. // alert(uni.getStorageSync('token'))
  42. }, function(e) {
  43. alert('获取用户信息失败:' + e)
  44. });
  45. })
  46. },
  47. onShow: function() {
  48. console.log('App Show')
  49. },
  50. onHide: function() {
  51. console.log('App Hide')
  52. },
  53. }
  54. function pluginsReady(callback) {
  55. if (window.EbeiPlugins) {
  56. callback && callback()
  57. } else {
  58. document.addEventListener('deviceready', callback, false)
  59. }
  60. };
  61. </script>
  62. <style lang="scss">
  63. @import "uview-ui/index.scss";
  64. page {
  65. width: 100%;
  66. height: 100%;
  67. background: #f5f5f9;
  68. }
  69. .content {
  70. width: 100%;
  71. height: 100%;
  72. }
  73. .status_bar {
  74. height: 80rpx;
  75. width: 100%;
  76. background-color: #5976ba;
  77. color: #fff;
  78. text-align: center;
  79. line-height: 80rpx;
  80. padding: 0 20rpx;
  81. .left {
  82. width: 60px;
  83. height: 80rpx;
  84. float: left;
  85. }
  86. .right {
  87. width: 60px;
  88. height: 80rpx;
  89. float: right;
  90. }
  91. .left2 {
  92. width: 80px;
  93. height: 80rpx;
  94. float: left;
  95. text-align: center;
  96. }
  97. .right2 {
  98. width: 80px;
  99. height: 80rpx;
  100. float: right;
  101. text-align: center;
  102. }
  103. }
  104. .topbar {
  105. height: 25px;
  106. background-color: #5976ba;
  107. }
  108. .status_tabs {
  109. height: 80rpx;
  110. line-height: 80rpx;
  111. width: 100%;
  112. background-color: #5976ba;
  113. }
  114. .card {
  115. width: calc(100% - 20px);
  116. margin: 0 auto;
  117. margin-bottom: 10px;
  118. border-radius: 5px;
  119. background: #fff;
  120. .top {
  121. display: flex;
  122. justify-content: space-between;
  123. height: 40px;
  124. padding: 10px;
  125. line-height: 20px;
  126. border-bottom: 1px solid #e4e4e4;
  127. .left {
  128. font-weight: bold;
  129. }
  130. }
  131. .bottom {
  132. padding: 10px;
  133. view {
  134. line-height: 25px;
  135. }
  136. .bButton {
  137. margin-top: 10px;
  138. height: 40px;
  139. line-height: 40px;
  140. span {
  141. float: right;
  142. display: block;
  143. height: 39px;
  144. line-height: 39px;
  145. border-radius: 39px;
  146. // width: 80px;
  147. padding: 0 30px;
  148. background-color: #5976ba;
  149. border: 1px solid #5976ba;
  150. color: #fff;
  151. text-align: center;
  152. }
  153. }
  154. }
  155. }
  156. .mainCont {
  157. width: 100%;
  158. }
  159. .bottomButton {
  160. width: 100%;
  161. height: 60px;
  162. line-height: 60px;
  163. background: #f5f5f9;
  164. position: fixed;
  165. bottom: 0;
  166. left: 0;
  167. padding-top: 10px;
  168. z-index: 20;
  169. view {
  170. width: calc(100% - 30px);
  171. height: 40px;
  172. line-height: 40px;
  173. border-radius: 40px;
  174. color: #fff;
  175. text-align: center;
  176. background-color: #5976ba;
  177. margin: 0 auto;
  178. }
  179. }
  180. .slot-btn {
  181. width: 80px;
  182. height: 80px;
  183. display: flex;
  184. justify-content: center;
  185. align-items: center;
  186. }
  187. </style>