|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <script>
- import Vue from 'vue';
- export default {
- onLaunch() {
- uni.getSystemInfo({
- success: function(e) {
- // #ifndef MP
- Vue.prototype.StatusBar = e.statusBarHeight;
- if (e.platform == 'android') {
- Vue.prototype.CustomBar = e.statusBarHeight + 50;
- } else {
- Vue.prototype.CustomBar = e.statusBarHeight + 45;
- }
- // #endif
- // #ifdef MP-WEIXIN
- Vue.prototype.StatusBar = e.statusBarHeight;
- let custom = wx.getMenuButtonBoundingClientRect();
- Vue.prototype.Custom = custom;
- Vue.prototype.CustomBar = custom.bottom + custom.top - e.statusBarHeight;
- // #endif
- // #ifdef MP-ALIPAY
- Vue.prototype.StatusBar = e.statusBarHeight;
- Vue.prototype.CustomBar = e.statusBarHeight + e.titleBarHeight;
- // #endif
- Vue.mixin({
- data() {
- return {
- StatusBar: Vue.prototype.StatusBar,
- CustomBar: Vue.prototype.CustomBar,
- };
- },
- });
- }
- });
- },
- onShow() {},
- onHide() {}
- }
- </script>
-
- <style lang="scss">
- @import url("./static/css/main.css");
-
- /*每个页面公共css */
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- font-family: PingFangSC, PingFang SC;
- }
- </style>
|