App.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. <script>
  2. import Vue from 'vue'
  3. // import app from './utils/api.js'
  4. export default {
  5. onLaunch: function() {
  6. // 微信登录
  7. wx.login({
  8. success({code}) {
  9. uni.request({
  10. url:'https://teacherapi.cocorobo.cn/api/pbl/weChatCode',
  11. method:'GET',
  12. data:{codes:code}
  13. }).then(res=>{
  14. console.log(res);
  15. uni.setStorageSync('oId',res.data)
  16. })
  17. }
  18. })
  19. uni.getSystemInfo({
  20. success: function(res) {
  21. Vue.prototype.screenHeight = res.screenHeight
  22. Vue.prototype.screenWidth = res.screenWidth
  23. // console.log(res);
  24. const tabBarHeight = res.screenHeight - res.windowHeight;
  25. Vue.prototype.tabBarHeight = tabBarHeight
  26. if (uni.getMenuButtonBoundingClientRect()) {
  27. console.log('小程序');
  28. // 小程序状态栏是指显示电量的那一小部分
  29. thisWechat(res.statusBarHeight)
  30. } else {
  31. console.log('app');
  32. thisApp(res.statusBarHeight)
  33. }
  34. }
  35. });
  36. function thisWechat(statusBarHeight) {
  37. // 获取胶囊位置
  38. let meunButtonInfo = uni.getMenuButtonBoundingClientRect()
  39. // console.log(meunButtonInfo);
  40. Vue.prototype.meunButtonInfo = meunButtonInfo.height
  41. // 计算出导航栏高度+动态栏
  42. let allHeight = meunButtonInfo.bottom + (meunButtonInfo.top - statusBarHeight) * 2;
  43. // console.log(allHeight);
  44. let navheight;
  45. Vue.prototype.navheight = allHeight
  46. // 按钮离顶
  47. let alltop = meunButtonInfo.top
  48. Vue.prototype.navTop = alltop
  49. // 动态栏高度
  50. let statusHeight
  51. Vue.prototype.statusHeight = statusBarHeight
  52. };
  53. function thisApp(statusBarHeight) {
  54. // console.log(uni.getSystemInfoSync());
  55. // 导航栏高度
  56. // let appAllHeight;console.log();
  57. // Vue.prototype.appAllHeight=statusBarHeight+44+'px';
  58. // console.log(statusBarHeight);
  59. let customBarHeight;
  60. if (uni.getSystemInfoSync().platform === 'android') {
  61. customBarHeight = statusBarHeight + 50;
  62. } else if (uni.getSystemInfoSync().platform === 'ios') {
  63. // iOS 平台
  64. // 在这里根据 iOS 平台的特性计算自定义状态栏高度
  65. // ...
  66. customBarHeight = statusBarHeight + 45;
  67. } else {
  68. // 其他平台
  69. // ...
  70. customBarHeight = statusBarHeight;
  71. }
  72. // console.log(customBarHeight);
  73. Vue.prototype.customBar = customBarHeight;
  74. }
  75. },
  76. onShow() {},
  77. onLoad() {
  78. }
  79. }
  80. </script>
  81. <style>
  82. /*每个页面公共css */
  83. body {
  84. background-color: #f0f2f5;
  85. /* font-family: PingFang SC; */
  86. }
  87. view {
  88. box-sizing: border-box;
  89. padding: 0;
  90. }
  91. /* 公共字体大小类 */
  92. .one-font {
  93. font-size: 48rpx;
  94. line-height: 72rpx;
  95. font-weight: 600;
  96. }
  97. .two-font {
  98. font-size: 40rpx;
  99. line-height: 56rpx;
  100. }
  101. .twoZ-font {
  102. font-size: 40rpx;
  103. line-height: 56rpx;
  104. font-weight: 500;
  105. }
  106. .three-font {
  107. font-size: 34rpx;
  108. line-height: 48rpx;
  109. font-weight: 500;
  110. }
  111. .num-font {
  112. font-size: 36rpx;
  113. line-height: 56rpx;
  114. font-weight: 700;
  115. }
  116. .bmTit-font {
  117. font-size: 36rpx;
  118. line-height: 44rpx;
  119. font-weight: 500;
  120. }
  121. .fNum-font {
  122. font-size: 44rpx;
  123. line-height: 56rpx;
  124. font-weight: 700;
  125. }
  126. .zw-font {
  127. font-size: 34rpx;
  128. line-height: 48rpx;
  129. }
  130. .btn-font {
  131. font-size: 28rpx;
  132. line-height: 40rpx;
  133. font-weight: 600;
  134. }
  135. .fwb-font {
  136. font-size: 28rpx;
  137. line-height: 40rpx;
  138. font-size: 400;
  139. }
  140. .sZw-font {
  141. font-size: 26rpx;
  142. line-height: 42rpx;
  143. font-size: 400;
  144. }
  145. .sBtn-font {
  146. font-size: 24rpx;
  147. line-height: 32rpx;
  148. font-weight: 600;
  149. }
  150. .fz-font {
  151. font-size: 24rpx;
  152. line-height: 32rpx;
  153. font-weight: 400;
  154. }
  155. .bq-font {
  156. font-size: 20rpx;
  157. line-height: 24rpx;
  158. }
  159. .bqZ-font {
  160. font-size: 20rpx;
  161. line-height: 24rpx;
  162. font-weight: 600;
  163. }
  164. </style>