App.vue 4.5 KB

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