| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <script>
- // import { browserDetection } from '@/utils/auth';
- export default {
- onLaunch: function() {
- // console.log('App onLaunch')
- },
- onShow: function() {
- // console.log('App Show')
- // browserDetection();
- },
- onHide: function() {
- // console.log('App Hide')
- },
- }
- </script>
- <style lang="stylus">
- html,
- body {
- width: 100%;
- height: 100%;
- flex: 1;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- background: #f5f5f5;
- font-family: PingFang SC;
- font-weight: 400;
- font-size: 30rpx;
- color: #333;
- uni-app {
- flex: 1;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- uni-page {
- flex: 1;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- uni-page-wrapper {
- flex: 1;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- uni-page-body {
- flex: 1;
- display: flex;
- flex-direction: column;
- overflow: hidden;
- }
- }
- }
- }
- }
- </style>
|