App.vue 4.0 KB

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