App.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  1. <script>
  2. /**
  3. * vuex管理登陆状态,具体可以参考官方登陆模板示例
  4. */
  5. import {
  6. mapMutations
  7. } from 'vuex';
  8. // #ifdef H5
  9. import {
  10. weixindata,
  11. weixinlocation
  12. } from './utils/wxAuthorized';
  13. // #endif
  14. export default {
  15. data() {
  16. return {
  17. /* 保存微信信息 */
  18. appData: {},
  19. weixinObj: '' //保存微信对象
  20. };
  21. },
  22. methods: {
  23. ...mapMutations('user', ['setUserInfo', 'login', 'hasLogin']),
  24. },
  25. onLaunch: function(urlObj) {
  26. let obj = this;
  27. // 加载缓存中的用户信息
  28. let userInfo = uni.getStorageSync('userInfo') || '';
  29. console.log(userInfo,'bba');
  30. // 判断是否拥有用户信息
  31. if (userInfo.uid) {
  32. //更新登陆状态
  33. uni.getStorage({
  34. key: 'userInfo',
  35. success: res => {
  36. obj.setUserInfo(res.data);
  37. obj.login(res.data);
  38. }
  39. });
  40. }
  41. // #ifdef H5
  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. // console.log('App Luanch')
  56. // obj.audioMusic = uni.createInnerAudioContext(); //创建对象
  57. // obj.audioMusic.autoplay = true; //是否自动播放
  58. // obj.audioMusic.loop = true; //是否循坏播放
  59. // obj.audioMusic.onPlay(function(){
  60. // console.log('音乐开始播放了。。。。')
  61. // })
  62. // obj.audioMusic.onError(function(res){
  63. // console.log(res)
  64. // })
  65. },
  66. onShow: function() {
  67. // 加载拦截
  68. // console.log('App Show');
  69. // console.log(this.$u.config.v);
  70. },
  71. onHide: function() {
  72. // console.log('App Hide');
  73. }
  74. };
  75. </script>
  76. <style lang="scss">
  77. @import "uview-ui/index.scss";
  78. view,
  79. scroll-view,
  80. swiper,
  81. swiper-item,
  82. cover-view,
  83. cover-image,
  84. icon,
  85. text,
  86. rich-text,
  87. progress,
  88. button,
  89. checkbox,
  90. form,
  91. input,
  92. label,
  93. radio,
  94. slider,
  95. switch,
  96. textarea,
  97. navigator,
  98. audio,
  99. camera,
  100. image,
  101. video {
  102. box-sizing: border-box;
  103. }
  104. /* flex布局-整体居中 */
  105. .flex-center {
  106. display: flex;
  107. align-items: center;
  108. justify-content: center;
  109. }
  110. /* flex布局-上下居中 */
  111. .flex-upDown-center {
  112. display: flex;
  113. align-items: center;
  114. }
  115. //单行排列,居中
  116. .flex_direction {
  117. display: flex;
  118. flex-direction: column;
  119. align-items: center;
  120. }
  121. //单行字体省略
  122. .word1_ellipsis {
  123. text-overflow: ellipsis; //显示 ...
  124. overflow: hidden; //隐藏文字
  125. white-space: nowrap; //不换行
  126. }
  127. //多行字体省略
  128. .word2_ellipsis{
  129. overflow: hidden;
  130. text-overflow: ellipsis;
  131. display: -webkit-box;
  132. -webkit-line-clamp: 2;//在第几行显示...
  133. -webkit-box-orient: vertical;
  134. }
  135. //右外边距
  136. .m-r25 {
  137. margin-right: 25rpx;
  138. }
  139. .m-r15 {
  140. margin-right: 15rpx;
  141. }
  142. .flex1 {
  143. display: flex;
  144. align-items: center;
  145. justify-content: space-between;
  146. }
  147. .flex-start {
  148. display: flex;
  149. align-items: center;
  150. justify-content: flex-start;
  151. }
  152. .flex {
  153. display: flex;
  154. }
  155. .position-relative {
  156. position: relative;
  157. }
  158. /* 骨架屏替代方案 */
  159. .Skeleton {
  160. background: #f3f3f3;
  161. padding: 20rpx 0;
  162. border-radius: 8rpx;
  163. }
  164. /* 图片载入替代方案 */
  165. .image-wrapper {
  166. font-size: 0;
  167. background: #f3f3f3;
  168. border-radius: 4px;
  169. image {
  170. width: 100%;
  171. height: 100%;
  172. transition: 0.6s;
  173. opacity: 0;
  174. &.loaded {
  175. opacity: 1;
  176. }
  177. }
  178. }
  179. // 设置富文本中图片最大宽度
  180. uni-rich-text img {
  181. max-width: 100% !important;
  182. }
  183. /*边框*/
  184. .b-b:after,
  185. .b-t:after {
  186. position: absolute;
  187. z-index: 3;
  188. left: 0;
  189. right: 0;
  190. height: 0;
  191. content: '';
  192. transform: scaleY(0.5);
  193. border-bottom: 1px solid $border-color-base;
  194. }
  195. .b-b:after {
  196. bottom: 0;
  197. }
  198. .b-t:after {
  199. top: 0;
  200. }
  201. /* button样式改写 */
  202. uni-button,
  203. button {
  204. height: 80rpx;
  205. line-height: 80rpx;
  206. font-size: $font-lg + 2rpx;
  207. font-weight: normal;
  208. &.no-border:before,
  209. &.no-border:after {
  210. border: 0;
  211. }
  212. }
  213. uni-button[type='default'],
  214. button[type='default'] {
  215. color: $font-color-dark;
  216. }
  217. /* input 样式 */
  218. .input-placeholder {
  219. color: #999999;
  220. }
  221. .placeholder {
  222. color: #999999;
  223. }
  224. // 边距样式
  225. @for $i from 1 to 4 {
  226. .margin-l-#{$i * 10} {
  227. margin-left: $i * 10rpx !important;
  228. }
  229. .margin-r-#{$i * 10} {
  230. margin-right: $i * 10rpx !important;
  231. }
  232. .margin-t-#{$i * 10} {
  233. margin-top: $i * 10rpx !important;
  234. }
  235. .margin-b-#{$i * 10} {
  236. margin-bottom: $i * 10rpx !important;
  237. }
  238. .margin-#{$i * 10} {
  239. margin: $i * 10rpx !important;
  240. }
  241. .margin-v-#{$i * 10} {
  242. margin-top: $i * 10rpx !important;
  243. margin-bottom: $i * 10rpx !important;
  244. }
  245. .margin-c-#{$i * 10} {
  246. margin-left: $i * 10rpx !important;
  247. margin-right: $i * 10rpx !important;
  248. }
  249. .padding-l-#{$i * 10} {
  250. padding-left: $i * 10rpx !important;
  251. }
  252. .padding-r-#{$i * 10} {
  253. padding-right: $i * 10rpx !important;
  254. }
  255. .padding-t-#{$i * 10} {
  256. padding-top: $i * 10rpx !important;
  257. }
  258. .padding-b-#{$i * 10} {
  259. padding-bottom: $i * 10rpx !important;
  260. }
  261. .padding-#{$i * 10} {
  262. padding: $i * 10rpx !important;
  263. }
  264. .padding-v-#{$i * 10} {
  265. padding-top: $i * 10rpx !important;
  266. padding-bottom: $i * 10rpx !important;
  267. }
  268. .padding-c-#{$i * 10} {
  269. padding-left: $i * 10rpx !important;
  270. padding-right: $i * 10rpx !important;
  271. }
  272. }
  273. // 字体大小
  274. .font-size-sm {
  275. font-size: $font-sm;
  276. }
  277. .font-size-base {
  278. font-size: $font-base;
  279. }
  280. .font-size-lg {
  281. font-size: $font-lg;
  282. }
  283. // 字体颜色
  284. .font-color-yellow {
  285. color: $color-yellow;
  286. }
  287. .font-color-gray {
  288. color: $color-gray;
  289. }
  290. .font-color-red {
  291. color: $color-red;
  292. }
  293. // 边框颜色
  294. .border-color-yellow {
  295. border: 1rpx solid $color-yellow;
  296. }
  297. // 修改默认背景颜色
  298. uni-page-wrapper {
  299. background-color: $page-color-base;
  300. }
  301. page {
  302. background-color: $page-color-base;
  303. // 设置默认字体
  304. font-family: PingFang SC, STHeitiSC-Light, Helvetica-Light, arial, sans-serif, Droid Sans Fallback;
  305. }
  306. </style>