App.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. <script>
  2. /**
  3. * vuex管理登陆状态,具体可以参考官方登陆模板示例
  4. */
  5. import { mapMutations } from 'vuex';
  6. // #ifdef H5
  7. import { weixindata, setRouter } from './utils/wxAuthorized';
  8. // #endif
  9. // #ifdef APP-PLUS
  10. import { getUpApp } from './utils/upApp.js';
  11. // #endif
  12. export default {
  13. data() {
  14. return {
  15. /* 保存微信信息 */
  16. appData: {}
  17. };
  18. },
  19. methods: {
  20. ...mapMutations('user', ['setUserInfo', 'login', 'hasLogin'])
  21. },
  22. onLaunch: function(urlObj) {
  23. let obj = this;
  24. // 加载缓存中的用户信息
  25. let userInfo = uni.getStorageSync('userInfo') || '';
  26. // 判断是否拥有用户信息
  27. console.log(userInfo,'yonghu')
  28. if (userInfo.uid) {
  29. //更新登陆状态
  30. uni.getStorage({
  31. key: 'userInfo',
  32. success: res => {
  33. console.log(res)
  34. obj.setUserInfo(res.data);
  35. obj.login(res.data);
  36. }
  37. });
  38. }
  39. // #ifdef H5
  40. // 保存路由对象
  41. setRouter(this.$router);
  42. //判断是否已经缓存浏览器
  43. let bool = uni.getStorageSync('weichatBrowser') || '';
  44. if (bool === '') {
  45. //判断是否为微信浏览
  46. bool = navigator.userAgent.toLowerCase().match(/MicroMessenger/i) == 'micromessenger';
  47. // 保存当前是否为微信内核浏览器
  48. uni.setStorageSync('weichatBrowser', bool);
  49. }
  50. if (bool) {
  51. // 加载微信信息
  52. weixindata();
  53. }
  54. // #endif
  55. // #ifdef APP-PLUS
  56. // 判断是否升级
  57. getUpApp();
  58. // 获取当前运行系统
  59. let system = uni.getStorageSync('platform') || '';
  60. if (!system) {
  61. uni.setStorage({
  62. key: 'platform',
  63. data: uni.getSystemInfoSync().platform
  64. });
  65. }
  66. // #endif
  67. },
  68. onShow: function() {
  69. // 加载拦截
  70. // console.log('App Show');
  71. },
  72. onHide: function() {
  73. // console.log('App Hide');
  74. }
  75. };
  76. </script>
  77. <style lang="scss">
  78. /*全局公共样式和字体图标*/
  79. @import '/static/css/cmy.css';
  80. view,
  81. scroll-view,
  82. swiper,
  83. swiper-item,
  84. cover-view,
  85. cover-image,
  86. icon,
  87. text,
  88. rich-text,
  89. progress,
  90. button,
  91. checkbox,
  92. form,
  93. input,
  94. label,
  95. radio,
  96. slider,
  97. switch,
  98. textarea,
  99. navigator,
  100. audio,
  101. camera,
  102. image,
  103. video {
  104. box-sizing: border-box;
  105. }
  106. /* 骨架屏替代方案 */
  107. .Skeleton {
  108. background: #f3f3f3;
  109. padding: 20rpx 0;
  110. border-radius: 8rpx;
  111. }
  112. /* 图片载入替代方案 */
  113. .image-wrapper {
  114. font-size: 0;
  115. background: #f3f3f3;
  116. border-radius: 4px;
  117. image {
  118. width: 100%;
  119. height: 100%;
  120. transition: 0.6s;
  121. opacity: 0;
  122. &.loaded {
  123. opacity: 1;
  124. }
  125. }
  126. }
  127. // 设置富文本中图片最大宽度
  128. uni-rich-text img {
  129. max-width: 100% !important;
  130. }
  131. /*边框*/
  132. .b-b:after,
  133. .b-t:after {
  134. position: absolute;
  135. z-index: 3;
  136. left: 0;
  137. right: 0;
  138. height: 0;
  139. content: '';
  140. transform: scaleY(0.5);
  141. border-bottom: 1px solid $border-color-base;
  142. }
  143. .b-b:after {
  144. bottom: 0;
  145. }
  146. .b-t:after {
  147. top: 0;
  148. }
  149. /* button样式改写 */
  150. uni-button,
  151. button {
  152. height: 80rpx;
  153. line-height: 80rpx;
  154. font-size: $font-lg + 2rpx;
  155. font-weight: normal;
  156. &.no-border:before,
  157. &.no-border:after {
  158. border: 0;
  159. }
  160. }
  161. uni-button[type='default'],
  162. button[type='default'] {
  163. color: $font-color-dark;
  164. }
  165. /* input 样式 */
  166. .input-placeholder {
  167. color: #999999;
  168. }
  169. .placeholder {
  170. color: #999999;
  171. }
  172. // 边距样式
  173. @for $i from 1 to 4 {
  174. .margin-l-#{$i * 10} {
  175. margin-left: $i * 10rpx !important;
  176. }
  177. .margin-r-#{$i * 10} {
  178. margin-right: $i * 10rpx !important;
  179. }
  180. .margin-t-#{$i * 10} {
  181. margin-top: $i * 10rpx !important;
  182. }
  183. .margin-b-#{$i * 10} {
  184. margin-bottom: $i * 10rpx !important;
  185. }
  186. .margin-#{$i * 10} {
  187. margin: $i * 10rpx !important;
  188. }
  189. .margin-v-#{$i * 10} {
  190. margin-top: $i * 10rpx !important;
  191. margin-bottom: $i * 10rpx !important;
  192. }
  193. .margin-c-#{$i * 10} {
  194. margin-left: $i * 10rpx !important;
  195. margin-right: $i * 10rpx !important;
  196. }
  197. .padding-l-#{$i * 10} {
  198. padding-left: $i * 10rpx !important;
  199. }
  200. .padding-r-#{$i * 10} {
  201. padding-right: $i * 10rpx !important;
  202. }
  203. .padding-t-#{$i * 10} {
  204. padding-top: $i * 10rpx !important;
  205. }
  206. .padding-b-#{$i * 10} {
  207. padding-bottom: $i * 10rpx !important;
  208. }
  209. .padding-#{$i * 10} {
  210. padding: $i * 10rpx !important;
  211. }
  212. .padding-v-#{$i * 10} {
  213. padding-top: $i * 10rpx !important;
  214. padding-bottom: $i * 10rpx !important;
  215. }
  216. .padding-c-#{$i * 10} {
  217. padding-left: $i * 10rpx !important;
  218. padding-right: $i * 10rpx !important;
  219. }
  220. }
  221. // 字体大小
  222. .font-size-sm {
  223. font-size: $font-sm;
  224. }
  225. .font-size-base {
  226. font-size: $font-base;
  227. }
  228. .font-size-lg {
  229. font-size: $font-lg;
  230. }
  231. // 字体颜色
  232. .font-color-yellow {
  233. color: $color-yellow;
  234. }
  235. .font-color-gray {
  236. color: $color-gray;
  237. }
  238. .font-color-red {
  239. color: $color-red;
  240. }
  241. // 边框颜色
  242. .border-color-yellow {
  243. border: 1rpx solid $color-yellow;
  244. }
  245. // 修改默认背景颜色
  246. uni-page-wrapper {
  247. background-color: $page-color-base;
  248. }
  249. page {
  250. background-color: $page-color-base;
  251. // 设置默认字体
  252. font-family: PingFang SC, STHeitiSC-Light, Helvetica-Light, arial, sans-serif, Droid Sans Fallback;
  253. }
  254. </style>